@charset "utf-8";

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  color: #231815;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  line-height: 1;
  overflow-x: hidden;
}

b,
strong {
  font-family: 'Noto Sans JP', Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  word-break: break-all;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

button {
  font-family: 'Noto Sans JP', Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  padding: 0;
}

table{
  border-collapse:collapse;
  border:none;
  border-spacing:0;
}

th,td {
  vertical-align:top;
  font-weight:normal;
  text-align:left;
}

caption{
  text-align:left;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1100;
  background:#fff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 331px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes fadeUpAnime{
from {
  opacity: 0;
  transform: translateY(100px);
}

to {
  opacity: 1;
  transform: translateY(0);
}
}

@media screen and (max-width: 767px) {
  #splash_logo img {
    width: 260px;
  }
}

.c-squareBtn {
  display: flex;
  align-items: center;
  width: 150px;
  height: 150px;
  padding: 10px;
  border: 1px solid #f08300;
  transition: all .3s;
}

.c-squareBtn:hover {
  background-color: #fdf1ea;
}

.c-squareBtn__text {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 12px;
}

/*矢印と下線の形状*/
.c-squareBtn__text::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*下線の形状*/
  width: 100%;
  height: 1px;
  background:#f08300;
  /*アニメーションの指定*/
  transition: all .3s;
}

.c-squareBtn__text::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 5px;
  right: 0;
  /*矢印の形状*/
  width: 12px;
  height: 1px;
  background:#f08300;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/
.c-squareBtn:hover .c-squareBtn__text::before {
  left: 5%;
}

.c-squareBtn:hover .c-squareBtn__text::after {
  right: -5%;
}

.c-heading {

}

.c-heading__en {
  margin-right: 25px;
  font-size: 6rem;
  line-height: 1.1;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, 1), rgba(235, 97, 51, 1));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.c-heading__jp {
  margin-bottom: 16px;
  padding: 3px 8px 5px;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 6px;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, 1), rgba(235, 97, 51, 1));
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .c-heading__en {
    font-size: 5.2rem;
  }
  
  .c-heading__jp {
    font-size: 1.6rem;
    border-radius: 5px;
  }
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
  display: inline-block;
  margin-bottom: -10px;
}

.slide-in_inner {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {

}

.c-moreLink {
  margin-right: 66px;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: underline;
  transition: .25s;
}

.c-moreLink::after {
  position: absolute;
  content: '→';
  top: 50%;
  right: -66px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 100vh;
  background-color: #62AB6F;
  transition: .1s;
}

.c-moreLink:hover::after {
  right: -70px;
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .c-moreLink {
    margin-right: 48px;
    font-size: 1.6rem;
  }
  
  .c-moreLink::after {
    right: -52px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
  
  .c-moreLink:hover::after {
    right: -56px;
    width: 48px;
    height: 48px;
  }
}

.c-backLink {
  margin-left: 66px;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: underline;
  transition: .25s;
}

.c-backLink::after {
  position: absolute;
  content: '←';
  top: 50%;
  left: -66px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 100vh;
  background-color: #62AB6F;
  transition: .1s;
}

.c-backLink:hover::after {
  left: -70px;
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .c-backLink {
    margin-left: 48px;
    font-size: 1.6rem;
  }
  
  .c-backLink::after {
    left: -48px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
  
  .c-backLink:hover::after {
    left: -48px;
    width: 48px;
    height: 48px;
  }
}

.p-menu {
  display: none;
  position: fixed;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, .95), rgba(235, 97, 51, .95));
  top: 0;
  right: 0;
  padding: 200px 120px 140px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 1005;
  -webkit-overflow-scrolling: touch;
}

.p-menu__list {
  margin-bottom: -40px;
}

.p-menu__item {
  margin-bottom: 40px;
}

.p-menu__link {
  position: relative;
  padding-left: 25px;
  line-height: 1.3;
  font-size: 3rem;
  color: #fff;
  transition: .25s;
}

.p-menu__link:hover {
  opacity: .65;
}

.open .p-menu {

}

@media screen and (max-width: 767px) {
  .p-menu {
    padding: 120px 30px 140px;
  }

  .p-menu__list {
    display: block;
    margin-bottom: 0;
  }
  
  .p-menu__item {
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
  }

  .p-menu__item:not(:first-child) {
    margin-top: 25px;
  }

  .p-menu__link {
    font-size: 1.6rem;
    padding-left: 20px;
  }
  
  .p-menu__link::before {
    width: 10px;
    height: 10px;
  }
  
  .p-menu__link::after {
    left: 10px;
    border-width: 5px 0 5px 3px;
    border-style: solid;
    border-color: transparent transparent transparent #62AB6F;
  }

  .p-menu__link:hover::after {
    left: 12px;
  }
}

/* ====================
header 
==================== */
.p-header {
  position: relative;
  max-width: 1680px;
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  margin-left: auto;
  margin-right: auto;
}

.p-header__inner {
  position: absolute;
  top: 20px;
  left: 40px;
  display: flex;
  align-items: center;
  width: calc(100% - 400px);
  z-index: 100;
  height: 80px;
  border-radius: 100vh;
  background-color: #fff;
}

.p-header__logoLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 80px;
  border-top-left-radius: 100vh;
  border-bottom-left-radius: 100vh;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, 1), rgba(235, 97, 51, 1));
  transition: .3s;
}

.p-header__logoLink:hover {
  filter: brightness(1.08);
}

.p-header__logoImg {
  display: block;
  width: 290px;
  padding-left: 10px;
  margin-top: 5px;
  filter: brightness(0) invert(1);
}

.p-globalNav {
  width: 100%;
}

.p-globalNav__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.p-globalNav__item:not(:last-child) {
  margin-right: 30px;
}

.p-globalNav__link {
  position: relative;
  white-space: nowrap;
  font-size: 1.7rem;
  transition: .3s;
}

.p-globalNav__link:hover {
  color:rgba(235, 97, 51, 1);
}

.p-globalNav__link::before {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  top: 50%;
  transform: translateY(-2px);
  /*線の形状*/
  width: 100%;
  height: 8px;
  width: 8px;
  background-color:rgba(235, 97, 51, 1);
  border-radius: 50%;
  opacity: 0;
  transition: .3s;
}

.p-globalNav__link:hover::before {
  opacity: 1;
}

.p-globalNav__link::before {
  left: -14px;
}

.p-header__btn {
  position: fixed;
  right: 120px;
  top: 25px;
  z-index: 1103;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 70px;
  border-radius: 100vh;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, 1), rgba(235, 97, 51, 1));
  font-size: 2rem;
  color: #fff;
  transition: .25s;
}

.p-header__btnBr {
  display: none;
}

.p-header__btn:hover {
  filter: brightness(1.08);
}

.p-header__tel {
  position: fixed;
  top: 105px;
  right: 30px;
  z-index: 1103;
}

.p-header__telLink {
  font-size: 4.8rem;
  transition: .3s;
}

.p-header__telLink:hover {
  color: rgba(235, 97, 51, 1);
}

@media screen and (max-width: 1499px) {
  .p-header__inner {
    width: calc(100% - 260px);
  }

  .p-header__btnHiragana {
    display: none;
  }

  .p-header__btn {
    width: 70px;
    line-height: 1.2;
    font-size: 1.7rem;
  }

  .p-header__btnBr {
    display: block;
  }

  .p-header__telLink {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 1379px) {
  .p-globalNav__item:not(:last-child) {
    margin-right: 20px;
  }
  
  .p-globalNav__link {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1279px) {  
  .p-header {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    height: 90px;
    background-color: rgba(255, 255, 255, .85);
    z-index: 1100;
  }

  .p-header__inner {
    position: static;
    display: block;
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
  }

  .p-header__logoLink {
    display: block;
    width: auto;
    height: auto;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-image: none;
  }
  
  .p-header__logoImg {
    display: block;
    padding-left: 0;
    filter: none;
  }

  .p-header__btn {
    top: 10px;
  }

  .p-header__tel {
    display: none;
  }

  .p-globalNav {
    display: none;
  }

  .open .p-header {
    background-color: transparent;
  }
  
  .open .p-header__logoImg {
    filter: brightness(0) invert(1);
  }
}

@media screen and (max-width: 767px) {
  .p-header {
    padding-right: 15px;
    padding-left: 15px;
  }

  .p-header__logoImg {
    max-width: 196px;
    width: 100%;
  }

  .p-header__btn {
    top: 15px;
    right: 85px;
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
}

.c-menuBtn {
  position: fixed;
  right: 30px;
  top: 25px;
  display: block;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all .3s;
  z-index: 1103;
}

.c-menuBtn:hover {
  filter: brightness(1.08);
}

.c-menuBtn__trigger,
.c-menuBtn__trigger span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}

.c-menuBtn__trigger {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #ea617c;
  border-radius: 50%;
}

.c-menuBtn__trigger span:nth-of-type(1),
.c-menuBtn__trigger span:nth-of-type(2),
.c-menuBtn__trigger span:nth-of-type(3) {
  position: absolute;
  width: 32px;
  height: 2px;
  left: 19px;
  background-color: #fff;
  border-radius: 3px;
}

.c-menuBtn__trigger span:nth-of-type(1) {
  top: 22px;
}

.c-menuBtn__trigger span:nth-of-type(2) {
  top: 34px;
}

.c-menuBtn__trigger span:nth-of-type(3) {
  top: 47px;
}

.open .c-menuBtn__trigger span:nth-of-type(1) {
  -webkit-transform: translateY(12.5px) rotate(-45deg);
  transform: translateY(12.5px) rotate(-45deg);
}

.open .c-menuBtn__trigger span:nth-of-type(2) {
  opacity: 0;
}

.open .c-menuBtn__trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-12.5px) rotate(45deg);
  transform: translateY(-12.5px) rotate(45deg);
}

@media screen and (max-width: 1279px) {
  .c-menuBtn {
    top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .c-menuBtn {
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
  }

  .c-menuBtn__trigger {
    width: 60px;
    height: 60px;
  }

  .c-menuBtn__trigger span:nth-of-type(1),
  .c-menuBtn__trigger span:nth-of-type(2),
  .c-menuBtn__trigger span:nth-of-type(3) {
    width: 26px;
    left: 17px;
  }

  .c-menuBtn__trigger span:nth-of-type(1) {
    top: 20px;
  }
  
  .c-menuBtn__trigger span:nth-of-type(2) {
    top: 29.5px;
  }

  .c-menuBtn__trigger span:nth-of-type(3) {
    top: 40px;
  }

  .open .c-menuBtn__trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .open .c-menuBtn__trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}

@media screen and (max-width: 479px) {

}

.p-mv {

}

.p-mv__inner {

}

.p-mv__imgWrapper {
  position: relative;
  width: 100%;
}

.p-mv__img {
  width: 100%;
  min-height: 720px;
}

@media screen and (max-width: 1279px) {
  .p-mv__imgWrapper {
    padding-top: 90px;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__img {
    min-height: auto;
  }
}

.p-hours {
  max-width: 1280px;
  margin-top: 90px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

.p-hoursTable {
  display: flex;
  margin-top: 20px;
}

.p-hoursTable__contents {
  margin-top: 5px;
  margin-right: 50px;
}

.p-hoursTable table {
  width: 100%;
}

.p-hoursTable .p-hoursTable__heading {
  background-color: #fce4d6;
}

.p-hoursTable table,
.p-hoursTable th,
.p-hoursTable td {
  border: 1px solid #f08300;
}

.p-hoursTable th,
.p-hoursTable td {
  width: 50px;
  padding: 15px;
  font-size: 2.4rem;
  text-align: center;
  vertical-align: middle;
}

.p-hoursTable .p-hoursTable__time {
  width: 250px;
}

.p-hoursTable__note {
  font-size: 1.8rem;
  line-height: 1.75;
}

@media screen and (max-width: 959px) {
  .p-hoursTable {
    display: block;
  }

  .p-hoursTable__contents {
    margin-right: 0;
    overflow-x: auto;
  }

  .p-hoursTable table {
    min-width: 440px;
  }

  .p-hoursTable__note {
    margin-top: 30px;
    font-size: 1.6rem;
  }  

  .p-hoursTable th,
  .p-hoursTable td {
    width: 40px;
    padding: 10px;
    font-size: 2rem;
  }

  .p-hoursTable .p-hoursTable__time {
    width: 160px;
  }
}

@media screen and (max-width: 767px) {
  .p-hours {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.p-topNews {
  max-width: 1280px;
  margin-top: 90px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

.p-topNews__container {
  display: flex;
  align-items: center;
}

.p-topNews__container .p-newsCard {
  margin-right: 40px;
}

@media screen and (max-width: 959px) {
  .p-topNews__container {
    display: block;
  }
  
  .p-topNews__container .p-newsCard {
    margin-right: auto;
  }
  
  .p-topNews__btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-topNews {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.p-newsCard {
  width: 100%;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.p-newsCard > .p-newsCard__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 31.6666667%;
  margin-right: 2.5%;
  margin-bottom: 30px;
  background-color: #fff;
}

.p-newsCard__link {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}

.p-newsCard__link:hover {
  opacity: 0.5;
}

.p-newsCard > .p-newsCard__item:nth-of-type(3n) {
  margin-right: 0;
}


.p-newsCard__body {
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1.65;
  letter-spacing: 0.025em;
}

.p-newsCard__imgWrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.p-newsCard__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-newsCard {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -20px;
  }

  .p-newsCard > .p-newsCard__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .p-newsCard__body {
    font-size: 1.6rem;
  }
}

.p-topServices {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

.p-topMedia {
  margin-top: 90px;
  display: flex;
}

.p-topMedia__imgWrapper {
  width: calc(100% - 400px);
}

.p-topMedia__text {
  margin-top: 80px;
  margin-left: -170px;
}

.p-topMedia__img {
  width: 100%;
}

.p-topMedia__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.p-topMedia__body > *:last-child {
  margin-bottom: 0;
}


.p-topMedia__btnList {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.p-topMedia__btnItem {
  margin-right: 30px;
}

.p-topMedia__btnItem:last-child {
  margin-right: 20px;
}

.p-topMedia.-reverse {
  flex-direction: row-reverse;
}

.p-topMedia.-reverse .p-topMedia__body {
  align-items: flex-end;
}

.p-topMedia.-reverse .p-topMedia__btnItem:last-child {
  margin-right: 50px;
}

.p-topMedia.-reverse .p-topMedia__text {
  margin-left: auto;
  margin-right: -30px;
  text-align: right;
}

@media screen and (max-width: 959px) {
  .p-topMedia {
    display: block;
  }

  .p-topMedia__imgWrapper {
    width: 100%;
  }

  .p-topMedia__body {
    display: block;
  }

  .p-topMedia__text {
    margin-top: 0;
    margin-left: 0;
  }
  
  .p-topMedia__body > *:last-child {
    margin-bottom: 0;
  }

  .p-topMedia__btnList {
    margin-top: 40px;
    justify-content: center;
  }
  
  .p-topMedia__btnItem:last-child {
    margin-right: 0;
  }
  
  
  .p-topMedia.-reverse .p-topMedia__body {
    align-items: flex-start;
  }
  
  .p-topMedia.-reverse .p-topMedia__btnItem:last-child {
    margin-right: 0;
  }
  
  .p-topMedia.-reverse .p-topMedia__text {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .p-topServices {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/*==================================================
背景色が伸びて出現
===================================*/

/*全共通*/

.bgextend {
  display: inline-block;
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

br + .bgextend {
  margin-top: 10px;
}

/*中の要素*/
.bgappear {
  display: inline-block;
  padding: 12px 15px 15px;
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #fff;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*左から右*/
.bgLRextend::before {
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, 1), rgba(235, 97, 51, 1));
  mix-blend-mode: multiply;
  z-index: 100;
}

@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  100% {
    transform-origin:left;
    transform:scaleX(1);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
    position: relative;
    z-index: 101;
}

@media screen and (max-width: 767px) {
  .bgappear {
    font-size: 1.8rem;
  }
}

.p-topAccess {
  max-width: 1280px;
  margin-top: 90px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 200px;
}

.p-accessMedia {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}

.p-accessMedia__body {
  padding-right: 50px;
}

.p-accessMedia__name {
  font-weight: normal;
}

.p-accessMedia__name,
.p-accessMedia__address {
  font-size: 1.8rem;
  line-height: 1.65;
}

.p-accessMedia__tel {
  margin-top: 5px;
}

.p-accessMedia__telLink {
  font-size: 5rem;
  transition: .3s;
}

.p-accessMedia__telLink:hover {
  color: rgba(235, 97, 51, 1);
}

.p-accessMedia__map {
  width: calc(100% - 400px);
}

.p-map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.p-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 959px) {
  .p-accessMedia {
    display: block;
  }
  
  .p-accessMedia__body {
    padding-right: 0;
  }

  .p-accessMedia__map {
    width: 100%;
  }
  
  .p-map {
    margin-top: 40px;
    width: 100%;
    position: relative;
    padding-top: 56.25%;
  }
}

@media screen and (max-width: 767px) {
  .p-topAccess {
    padding-right: 15px;
    padding-left: 15px;
  }

  .p-accessMedia__name,
  .p-accessMedia__address {
    font-size: 1.6rem;
  }
  
  .p-accessMedia__telLink {
    font-size: 4.2rem;
  }

  .p-map {
    padding-top: 100%;
  }
}

.p-news {
  width: 100%;
}

.p-news__item:not(:first-child) {
  border-top: 1px solid #C4DE9F;
}

.p-news__item {
  width: 100%;
}

.p-news__item.-nothing {
  padding: 20px 0;
}

.p-news__link {
  width: 100%;
  padding: 20px 0;
  line-height: 1.5;
  display: block;
  transition: 0.25s;
}

.p-news__link:hover {
  opacity: 0.5;
}

.p-news__date {
  display: block;
  color: #62AB6F;
}

.p-news__title {
  margin-top: 5px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-news__link {
    padding: 15px 0 20px;
  }

  .p-news__date {
    font-size: 1.5rem;
  }

  .p-news__title {
    font-size: 1.5rem;
  }
}

.p-timeline {
  margin-top: 90px;
  background-color: #fce4d6;
}

.p-timeline__inner {
  max-width: 1280px;
  padding: 90px 40px 200px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
}

.p-timeline__facebook,
.p-timeline__calendar  {
  width: calc(50% - 50px);
}

.p-timeline__calendar {
  margin-right: 100px;
}

.p-timeline__body {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .p-timeline__inner {
    display: block;
    max-width: 540px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .p-timeline__facebook {
    margin-top: 90px;
    width: 100%;
  }
  
  .p-timeline__calendar {
    width: 100%;
    margin-right: 0;
  }
}

.p-footer {
  position: relative;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, 1), rgba(235, 97, 51, 1));
  z-index: 3;
}

.p-footer__inner {
  max-width: 1080px;
  padding: 80px 40px;
  margin-right: auto;
  margin-left: auto;
}

.p-footer__logo {
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.p-footer__logoLink {
  transition: .25s;
}

.p-footer__logoLink:hover {
  opacity: .6;
}

.p-footer__logoImg {
  width: 100%;
}

.p-footer__info {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.p-footer__address {
  margin-right: 30px;
  color: #fff;
  line-height: 1.65;
}

.p-footer__telLink {
  font-size: 5rem;
  color: #fff;
  transition: .25s;
}

.p-footer__telLink:hover {
  opacity: .6;
}

.p-footer__copyright {
  margin-top: 30px;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

.c-pageTop {
  display: block;
  position: absolute;
  top: -35px;
  right: 40px;
  z-index: 2;
}

.c-pageTop__link {
  width: 70px;
  height: 70px;
  transition: .25s;
}

.c-pageTop__link:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 80px 15px;
  }
  
  .p-footer__info {
    display: block;
  }
  
  .p-footer__address {
    margin-right: 0;
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
  }
  
  .p-footer__telLink {
    margin-top: 5px;
    font-size: 4.2rem;
    width: 100%;
    text-align: center;
  }

  .c-pageTop {
    right: 15px;
  }
}

.l-main {

}

.p-pageHeader {
  padding: 100px 40px 0;
  background-color: #fce4d6;
}

.p-pageHeader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  height: 200px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-pageHeader__headingInner {
  margin-bottom: 10px;
  font-size: 4.4rem;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, 1), rgba(235, 97, 51, 1));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-page__contents {
  max-width: 1280px;
  margin-top: 100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 200px;
}

.p-page__card {
  margin-top: 100px;
}

@media screen and (max-width: 1279px) {
  .p-page {
    padding-top: 90px;
  }

  .p-pageHeader {
    padding: 0 40px;
  }  
}

@media screen and (max-width: 767px) {
  .p-pageHeader {
    padding: 0 15px;
  }

  .p-pageHeader__headingInner {
    font-size: 3rem;
  }

  .p-page__contents {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.p-media,
.p-media.-small {
  margin-top: 100px;
  display: flex;
}

.p-media__imgWrapper {
  width: 60%;
  margin-right: 40px;
  flex-shrink: 0;
}

.p-media__img {
  width: 100%;
}

.p-media__text {
  margin-top: 40px;
  font-size: 1.8rem;
  line-height: 2;
}

.p-media__body {
  width: calc(40% - 40px);
}

.p-media__body > *:last-child {
  margin-bottom: 0;
}

.p-media.-reverse {
  flex-direction: row-reverse;
}

.p-media.-reverse .p-media__body {
  align-items: flex-end;
}

.p-media.-reverse .p-media__imgWrapper,
.p-media.-reverse.-small .p-media__imgWrapper  {
  margin-right: 0;
  margin-left: 40px;
}

.p-media.-small .p-media__imgWrapper {
  width: 45%;
  margin-right: 40px;
}

.p-media.-small .p-media__body {
  width: calc(55% - 40px);
}

.p-media.-small .p-media__text {
  margin-top: 30px;
}

.p-media.-small .p-media__text  + .p-media__text  {
  margin-top: 1em;
}

@media screen and (max-width: 1079px) {
  .p-media {
    display: block;
  }

  .p-media__imgWrapper,
  .p-media.-reverse .p-media__imgWrapper {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .p-media__body {
    width: 100%;
  }
}

@media screen and (max-width: 959px) {
  .p-media.-small {
    display: block;
  }

  .p-media.-small .p-media__imgWrapper {
    width: 100%;
    margin-right: 0;
  }
  
  .p-media.-reverse.-small .p-media__imgWrapper {
    margin-left: 0;
  }

  .p-media.-small .p-media__body {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-media__text {
    font-size: 1.6rem;
  }
}

.p-pageCard {
  margin-top: 25px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}

.p-pageCard__item {
  width: 23.125%;
  margin-right: 2.5%;
  margin-bottom: 40px;
}

.p-pageCard__item:nth-of-type(4n),
.p-pageCard__item:last-child {
  margin-right: 0;
}

.p-pageCard__text {
  margin-top: 15px;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 959px) {
  .p-pageCard__item {
    width: 47.91667%;
    margin-right: 4.166666%;
  }

  .p-pageCard__item:nth-of-type(4n) {
    margin-right: 4.166666%;
  }
  
  .p-pageCard__item:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .p-pageCard {
    display: block;
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
  }

  .p-pageCard__item {
    width: 100%;
    margin-right: 0;
  }

  .p-pageCard__item:nth-of-type(4n) {
    margin-right: 0;
  }
}

.p-pageArchive {
  max-width: 1080px;
  margin-top: 100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 200px;
}

@media screen and (max-width: 767px) {
  .p-pageArchive {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* ====================
single
==================== */
.p-article {
  width: 100%;
  max-width:  1080px;
  margin-top: 100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 200px;
}

.p-article__inner {
  padding: 20px 30px 100px;
  border: 1px solid #f08300;
  border-radius: 15px;
}

.p-article__header {
  
}

.p-article__title {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #f08300;
}

.p-article__info {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f08300;
}

.p-article__date {
  display: block;
 text-align: right;
}

.p-article__body {
  margin-top: 50px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.p-article__body a {
  text-decoration: underline;
  transition: .25s;
}

.p-article__body a:hover {
  opacity: .6;
}

.p-article__body h1, 
.p-article__body h2, 
.p-article__body h3, 
.p-article__body h4, 
.p-article__body h5, 
.p-article__body h6 {
  font-size: 2.4rem;
  font-weight: bold;
}

.p-article__body * + h1, 
.p-article__body * + h2, 
.p-article__body * + h3, 
.p-article__body * + h4, 
.p-article__body * + h5, 
.p-article__body * + h6,
.p-article__body * + img {
  margin-top: 2em;
}

.p-article__body * + p,
.p-article__body * + .wp-block-image {
  margin-top: 2em;
}

.p-article__body img,
.p-article__body * + .wp-block-image {
  width: auto;
  max-width: 100%;
}

.p-article__link {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-article__back {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.p-article__backLink {
  padding-bottom: 4px;
  display: inline-block;
  border-bottom: 1px solid #231815;
  font-size: 1.8rem;
  transition: .25s;
}

.p-article__backLink:hover {
  opacity: .65;
}

.p-article__next a,
.p-article__prev a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 40px;
  border-radius: 100vh;
  background-image: linear-gradient(90deg, rgba(246, 173, 60, 1), rgba(235, 97, 51, 1));
  font-size: 1.8rem;
  color: #fff;
  transition: .25s;
}

.p-article__next a:hover,
.p-article__prev a:hover {
  filter: brightness(1.08);
}

@media screen and (max-width: 767px) {
  .p-article {
    padding-right: 15px;
    padding-left: 15px;
  }

  .p-article__date {
    font-size: 1.6rem;
  }
  
  .p-article__title {
    font-size: 2rem;
  }

  .p-article__body h1, 
  .p-article__body h2, 
  .p-article__body h3, 
  .p-article__body h4, 
  .p-article__body h5, 
  .p-article__body h6 {
    font-size: 2rem;
  }

  .p-article__next a,
  .p-article__prev a {
    width: 150px;
    font-size: 1.6rem;
  }

  .p-article__back {
    top: 60px;
  }
}

.breadcrumbs {
  max-width: 1520px;
  padding: 20px 60px 0;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: right;
}

.breadcrumbs a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 10px 20px;
    font-size: 1.1rem;
    text-align: left;
    white-space: nowrap;
    overflow: auto;
  }
}

/*wp-pagenavi base*/
.wp-pagenavi {
  margin-top: 60px;
	clear: both;
	text-align:center;
}

.wp-pagenavi a, .wp-pagenavi span {
	background-color: #fff;
	border: solid 2px #f08300;
  display: inline-flex;
  justify-content: center;
  align-items: center;
	width: 40px;
  height: 40px;
	margin: 0 5px;
	white-space: nowrap;
	border-radius: 6px;
  font-size: 2.4rem;
	transition: .2s ease-in-out;
	text-align: center;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
	color: #fff;
	background-color: #f08300;
	border-color: #f08300;
}

.wp-pagenavi span.current {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi a, .wp-pagenavi span {
    margin: 0 3px;
    width: 45px;
    height: 45px;
  }
}

.u-sp {
  display: none;
}

.u-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }

  .u-pc {
    display: none;
  }
}

.u-textBold {
  font-weight: bold;
}

.u-kintou {
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.u-underline {
  text-decoration: underline;
}

.u-textLink {
  text-decoration: underline;
}

.u-textLink:hover {
  text-decoration: none;
}

.u-textRed {
  color: #BF152A;
}

.u-textSmall {
  font-size: 1.4rem;
}

/*==================================================
ふわっ
===================================*/

/* fadeUp */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定 */
.fadeUpTrigger {
  opacity: 0;
}

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.delay-time05 {
  animation-delay: 0.5s;
}

@media screen and (max-width: 959px) {
  .delay-time05 {
    animation-delay: 0s;
  }
}

/* ローディング用 */
.fadeInLoading {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
