@charset "utf-8";

/*------------------------------------------------------------
  web fonts
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');


:root{
  --color_dark: #002E50;
  --color_orange: #E27D55;
  --color_green: #7DCBC8;
  --color_red: #DD3A3A;
  --black: #333;
  --gray1: #F2F2F2;
}

.pc {display: block;}
.sp {display: none;}
@media screen and (max-width: 737px){
  .pc {display: none;}
  .sp {display: block;}
}


/*------------------------------------------------------------
  basic layout
------------------------------------------------------------*/
html, body {
  font-family: 'Noto Sans JP', sans-serif!important;
  font-size: 62.5%;
  font-weight: 400;
  line-height:1.8;
  color: var(--black);
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
html{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body{
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body * {
  box-sizing: border-box;
}
img {
  vertical-align: top;
  width: 100%;
}
a {
  border: none;
  text-decoration: none;
  transition: .3s;
  color: #000;
}
.en{
  font-family: "Zen Kaku Gothic New", sans-serif;;
  font-weight: 700;
}

/*** ------------------------------------------------------------------------------

フェードイン

-----------------------------------------------------------------------------  ***/
.show-cnt{
  transform: scale(1) translateY(20px);
  transition: 0.6s ease-out;
  opacity: 0;
}
.show-cnt.run{
  transform:scale(1) translateY(0);
  opacity: 1;
}

/*------------------------------------------------------------
  共通
------------------------------------------------------------*/
main{
  margin-top: 88px;
}
@media screen and (max-width: 1240px){
  main{
    margin-top: 77px;
  }
}
@media screen and (max-width: 970px){
  main{
    margin-top: 62px;
  }
}
@media screen and (max-width: 450px){
  main{
    margin-top: 50px;
  }
}
.l-inner__flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

/*------------------------------------------------------------
  p-page-header
------------------------------------------------------------*/
.p-page-header{
  min-height: 250px;
  height: 250px;
  width: 100%;
  position: relative;
  background-color: var(--gray1);
}
.p-page-header__inner{
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.p-page-header__text{
  font-size: clamp(1.4rem,1.7vw,1.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin: -15px 0 0;
  color: var(--color_dark);
}
.p-page-header__image{
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  min-height: 285px;
  height: 285px;
  overflow: hidden;
}
.p-page-header__image img{
  object-fit: cover;
  object-position: left bottom;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 798px){
  .p-page-header{
    min-height: auto;
    height: auto;
  }
  .p-page-header__inner{
    position: relative;
    top: initial;
    left: initial;
    transform: none;
    padding: 10px;
    width: 100%;
  }
  .p-page-header__inner .p-head-title{
    margin: 20px 0;
  }
  .p-page-header__text{
    font-weight: 700;
    line-height: 1.4;
    margin: -15px 0 0;
    color: var(--color_dark);
  }
  .p-page-header__image{
    position: relative;
    top: initial;
    right: initial;
    width: 90%;
    min-height: 100px;
    height: 100px;
    overflow: hidden;
    margin: 0 0 0 auto;
  }
}
/*------------------------------------------------------------
  p-pankuzu
------------------------------------------------------------*/
.p-pankuzu{
  padding: 10px 0;
  width: 90%;
  margin: 0 auto 60px;
}
.p-pankuzu__inner{
  justify-content: flex-start;
}
.p-pankuzu__inner-item{
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1.2;
  color: var(--color_dark);
}
.p-pankuzu__inner-item a{
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
  color: var(--color_dark);
}
.p-pankuzu__inner-item a:after{
  content: '\03e';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(4px, -50%);
}
.p-pankuzu__inner-item a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 798px){
  .p-pankuzu{
    margin: 0 auto 20px;
  }
}
/*------------------------------------------------------------
  p-head-title
------------------------------------------------------------*/
.p-head-title{
  color: var(--color_dark);
  font-size: clamp(2.2rem,3.4vw,4.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 30px;
}
.p-head-title .en{
  color:rgba(0,0,0,.0);
  -webkit-text-stroke: 1px var(--color_dark);
  display: block;
  font-size: clamp(1.6rem,2.4vw,2.8rem);
  letter-spacing: .25rem;
  margin: 0 0 5px;
}
.p-head-title .small{
  display: block;
  font-size: clamp(1.8rem,2.6vw,3rem);
}
@media screen and (max-width: 798px){
  .p-head-title{
    color: var(--color_dark);
    font-size: clamp(2.2rem,3.4vw,4.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
  }
}
/*------------------------------------------------------------
  p-contents-midashi
------------------------------------------------------------*/
.p-contents-midashi{
  text-align: center;
  color: var(--color_dark);
  font-size: clamp(2rem,3vw,3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 50px;
  padding-top: 45px;
  background: url(../images/common/icon-house.svg) no-repeat top center / 35px;
}
.p-contents-midashi strong{
  color: var(--color_orange);
  font-size: clamp(2.4rem,3.5vw,4.3rem);
}
.p-contents-midashi strong.dark{	
color: var(--color_dark);	
}
@media screen and (max-width: 798px){
  .p-contents-midashi{
    margin: 0 0 30px;
    line-height: 1.4;
    padding-top: 35px;
    background-size: 25px;
  }
}

/*------------------------------------------------------------
  button
------------------------------------------------------------*/
.c-radius-button{
  border-radius: 100px;
}
.c-radius-button--dark{
  border: solid 1px var(--color_dark);
  background-color: var(--color_dark);
  color: #fff;
  text-align: center;
}
.c-radius-button--dark:hover{
  background-color: #fff;
  color: var(--color_dark);
}
.c-radius-button--orange{
  border: solid 1px var(--color_orange);
  background-color: var(--color_orange);
  color: #fff;
  text-align: center;
}
.c-radius-button--orange:hover{
  background-color: #fff;
  color: var(--color_orange);
}
.c-radius-button--contact{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 370px;
  padding: 20px 5px;
  font-size: clamp(1.8rem,2vw,2.2rem);
  font-weight: 700;
  line-height: 1;
  transition: .3s;
}
.c-radius-button--contact:before{
  content: '';
  display: block;
  background: url(../images/common/icon-mail_white.svg) no-repeat center center / contain;
  width: 27px;
  height: 24px;
  margin: 0 10px 0 0;
  transition: .3s;
}
.c-radius-button--contact:hover:before{
  background-image: url(../images/common/icon-mail_dark.svg);
}
.c-radius-button--arrow{
  display: block;
  padding: 15px 50px 17px 30px;
  font-size: clamp(1.6rem,2vw,2.2rem);
  font-weight: 700;
  line-height: 1.2;
  transition: .3s;
  position: relative;
}
.c-radius-button--arrow span{
  display: block;
  font-size: clamp(1.4rem,1.4vw,1.5rem);
}
.c-radius-button--line-dark{
  font-size: clamp(1.6rem,2vw,2.2rem);
  border: solid 1px var(--color_dark);
  color: var(--color_dark);
  background-color: #fff;
  text-align: center;
}
.c-radius-button--line-dark span{
  font-size: clamp(1.4rem,1.4vw,1.6rem);
}
.c-radius-button--line-dark:hover{
  background-color: var(--color_dark);
  color: #fff;
}
.c-radius-button--arrow:after{
  content: '';
  display: block;
  background: url(../images/common/arw-white.svg) no-repeat center center / contain;
  width: 10px;
  height: 16px;
  transition: .3s;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.c-radius-button--arrow.c-radius-button--line-dark:after{
  background: url(../images/common/arw-dark.svg) no-repeat center center / contain;
}
.c-radius-button--orange.c-radius-button--arrow:hover:after{
  background: url(../images/common/arw-orange.svg) no-repeat center center / contain;
}
.c-radius-button--dark.c-radius-button--arrow:hover:after{
  background: url(../images/common/arw-dark.svg) no-repeat center center / contain;
}
.c-radius-button--arrow.c-radius-button--line-dark:hover:after{
  background: url(../images/common/arw-white.svg) no-repeat center center / contain;
}
@media screen and (max-width: 798px){
  .c-radius-button--contact{
    max-width: 300px;
    padding: 15px 5px;
  }
  .c-radius-button--contact:before{
    width: 22px;
    height: 18px;
    margin: 0 5px 0 0;
  }
  .c-radius-button--arrow{
    padding: 10px 30px 10px 30px;
  }
  .c-radius-button--arrow:after{
    right: 15px;
  }
}

/*------------------------------------------------------------
  header
------------------------------------------------------------*/
.l-header {
  padding: 20px 0 15px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  align-items: flex-end;
  z-index: 10000;
}
.l-header__logo{
  padding-left: 50px;
  align-items: center;
}
.l-header__logo-main{
  display: block;
  width: 176px;
}
.l-header__logo-company{
  display: block;
  width: 244px;
  margin-left: 20px;
}
#l-header__navi-toggle {
  display: none;
}
.l-header__menu-main{
  margin: 0 255px 0 0;
}
.l-header__menu-main-item{
  margin: 0 10px;
}
.l-header__menu-main-item a{
  font-size: clamp(1.2rem,1.4vw,1.5rem);
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
}
.l-header__menu-main-item a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: var(--color_green);
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.l-header__menu-main-item a:hover:before, .l-header__menu-main-item a:focus:before, .l-header__menu-main-item a:active:before {
  left: 0;
  right: 0;
}
.l-header__menu-sub{
  position: absolute;
  top: 15px;
  right: 250px;
}
.l-header__menu-sub-item a{
  font-size: clamp(1rem,1.1vw,1.3rem);
  line-height: 1;
  transition: .3s;
  display: inline-block;
  padding: 0 15px;
}
.l-header__menu-sub-item a:hover{
  color: var(--color_green);
}
.l-header__menu-sub-item:nth-of-type(1) a{
  border-right: solid 1px var(--black);
}
.l-header__button{
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 100%;
  align-items: stretch;
}
.l-header__button-item{
  width: 50%;
  display: flex;
}
.l-header__button-item a{
  display: flex;
  color: #fff;
  width: 100%;
  text-align: center;
  flex-direction: column;
  position: relative;
  font-size: clamp(1.2rem,1.4vw,1.5rem);
  line-height: 1.2;
  border: solid 1px;
  transition: .3s;
  padding-top: 10px;
}
.l-header__button-item a:before{
  content: '';
  display: block;
  background: no-repeat center center / contain;
  margin: 0 auto 5px;
  transition: .3s;
}
.l-header__button-item a strong{
  font-weight: 700;
}
.l-header__button-item:nth-of-type(1) a{
  background-color: var(--color_green);
  border-color: var(--color_green);
}
.l-header__button-item:nth-of-type(1) a:hover{
  background-color: #fff;
  color: var(--color_green);
}
.l-header__button-item:nth-of-type(1) a:before{
  background-image: url(../images/common/icon-house_white.svg);
  width: 32px;
  height: 32px;
}
.l-header__button-item:nth-of-type(1) a:hover:before{
  background-image: url(../images/common/icon-house_green.svg);
}
.l-header__button-item:nth-of-type(2) a{
  background-color: var(--color_dark);
  border-color: var(--color_dark);
}
.l-header__button-item:nth-of-type(2) a:hover{
  background-color: #fff;
  color: var(--color_dark);
}
.l-header__button-item:nth-of-type(2) a:before{
  background-image: url(../images/common/icon-mail_white.svg);
  width: 37px;
  height: 30px;
  margin: 0 auto 15px;
}
.l-header__button-item:nth-of-type(2) a:hover:before{
  background-image: url(../images/common/icon-mail_dark.svg);
}
@media screen and (max-width: 1240px){
  .l-header__logo{
    padding-left: 20px;
  }
  .l-header__logo-main{
    width: 140px;
  }
  .l-header__logo-company{
    width: 200px;
  }
  .l-header__menu-main{
    margin: 0 180px 0 0;
  }
  .l-header__menu-main-item{
    margin: 0 5px;
  }
  .l-header__menu-main-item a{
    font-size: clamp(1.2rem,1.4vw,1.4rem);
  }
  .l-header__menu-sub{
    position: absolute;
    top: 15px;
    right: 170px;
  }
  .l-header__menu-sub-item a{
    font-size: clamp(1rem,1.1vw,1.3rem);
    line-height: 1;
    transition: .3s;
    display: inline-block;
    padding: 0 15px;
  }
  .l-header__menu-sub-item a:hover{
    color: var(--color_green);
  }
  .l-header__menu-sub-item:nth-of-type(1) a{
    border-right: solid 1px var(--black);
  }
  .l-header__button{
    position: absolute;
    top: 0;
    right: 0;
    width: 170px;
    height: 100%;
    align-items: stretch;
  }
  .l-header__button-item{
    width: 50%;
    display: flex;
  }
  .l-header__button-item a{
    font-size: clamp(1.2rem,1.3vw,1.3rem);
    padding-top: 8px;
  }
  .l-header__button-item:nth-of-type(1) a:before{
    background-image: url(../images/common/icon-house_white.svg);
    width: 25px;
    height: 25px;
  }
  .l-header__button-item:nth-of-type(2) a:before{
    background-image: url(../images/common/icon-mail_white.svg);
    width: 30px;
    height: 25px;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 970px){
  .l-header {
    padding: 10px 0;
  }
  .l-header__menu-main{
    margin: 0;
    padding: 20px 0;
    display: block;
  }
  .l-header__menu-main-item{
    margin: 0 0 20px;
    width: 100%;
    text-align: center;
  }
  .l-header__menu-main-item a{
    font-size: clamp(1.6rem,1.7vw,1.8rem);
  }
  .l-header__menu-sub{
    position: relative;
    top: initial;
    right: initial;
    justify-content: center;
  }
  .l-header__menu-sub-item a{
    font-size: clamp(1.4rem,1.4vw,1.5rem);
    padding: 0 15px;
  }
  .l-header__menu-sub-item a:hover{
    color: var(--color_green);
  }
  .l-header__menu-sub-item:nth-of-type(1) a{
    border-right: solid 1px var(--black);
  }
  .l-header__button{
    position: relative;
    top: initial;
    right: initial;
    width: 90%;
    height: auto;
    margin: 20px auto 0;
    align-items: stretch;
  }
  .l-header__button-item a{
    font-size: clamp(1.4rem,1.4vw,1.5rem);
    padding: 10px 0;
  }
  .l-header__button-item a:before{
    margin: 0 auto 15px;
    transition: .3s;
  }
  .l-header__button-item:nth-of-type(1) a:before{
    width: 32px;
    height: 32px;
  }
  .l-header__button-item:nth-of-type(2) a:before{
    width: 37px;
    height: 30px;
    margin: 0 auto 15px;
  }
  .l-header__menu {
    left: 0;
    top: 62px;
    transform: translateX(100%);
    opacity: 0;
    width: 100%;
    height: calc(100vh - 62px);
    position: fixed;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    overflow-y: auto;
    background-color: rgba(255,255,255,.8);
    opacity: 0;
    z-index: 100;
    pointer-events: none;
  }
  .open .l-header__menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: inherit;
  }
  #l-header__navi-toggle {
    display: block;
    position: fixed;
    right: 15px;
    top: 18px;
    width: 30px;
    height: 30px;
    z-index: 10010;
  }
  #l-header__navi-toggle button {
    display: block;
    background-color: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    outline: none;
    padding: 0;
  }
  #l-header__navi-toggle button span {
    width: 28px;
    height: 2px;
    background-color: var(--color_dark);
    position: absolute;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  #l-header__navi-toggle button span:nth-child(1) {
    top: 3px;
  }
  #l-header__navi-toggle button span:nth-child(2) {
    top: 13px;
  }
  #l-header__navi-toggle button span:nth-child(3) {
    top: 23px;
  }
  #l-header__navi.open #l-header__navi-toggle span {
  }
  #l-header__navi.open #l-header__navi-toggle span:nth-child(1) {
    top: 13px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #l-header__navi.open #l-header__navi-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #l-header__navi.open #l-header__navi-toggle span:nth-child(3) {
    top: 13px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 450px){
  .l-header__logo{
    padding-left: 10px;
  }
  .l-header__logo-main{
    width: 100px;
  }
  .l-header__logo-company{
    width: 140px;
    margin-left: 13px;
  }
  #l-header__navi-toggle {
    right: 10px;
    top: 12px;
  }
  .l-header__menu {
    top: 50px;
    height: calc(100vh - 50px);
  }
}

/*------------------------------------------------------------
  footer
------------------------------------------------------------*/
.l-footer {
  background-color: #F3F4F6;
}
.l-footer-inner{
  max-width: 1000px;
  width: 90%;
  padding: 90px 0;
  margin: 0 auto;
  flex-flow: row-reverse;
}
.l-footer-info{
  width: 40%;
}
.l-footer-info__logo{
  max-width: 176px;
  margin: 0 0 30px;
}
.l-footer-info__text{
  line-height: 1.6;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  margin: 0 0 20px;
}
.l-footer-info__text span{
  display: block;
  color: var(--color_dark);
}
.l-footer-info__text:last-of-type{
  margin-block: 0;
}
.l-footer-menu{
  width: 56%;
  justify-content: flex-end;
}
.l-footer-menu__navi{
  width: calc(100% / 3 - 5px);
}
.l-footer-menu__navi-item{
  line-height: 1.2;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
}
.l-footer-menu__navi-item a{
  margin: 0 0 20px;
  display: inline-block;
  transition: .3s;
}
.l-footer-menu__navi-item a:hover{
  color: var(--color_green);
}
.l-footer-menu__navi-sns{
  line-height: 1.2;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
}
.l-footer-menu__navi-sns a{
  display: block;
  width: 28px;
  margin: 8px 0 0;
}
.l-footer-menu__navi-item .l-footer-menu__navi-sns:hover{
  opacity: .7;
}
.l-footer address{
  background-color: #fff;
  padding: 10px 0;
  text-align: center;
  color: var(--color_dark);
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1;
  font-style: normal;
}
@media screen and (max-width: 798px){
  .l-footer-inner{
    padding: 0 0 30px;
    display: block;
    width: 100%;
  }
  .l-footer-info{
    width: 90%;
    margin: 0 auto;
  }
  .l-footer-info__logo{
    max-width: 176px;
    margin: 0 auto 30px;
  }
  .l-footer-info__text{
    font-size: clamp(1.4rem,1.4vw,1.4rem);
    margin: 0 0 20px;
  }
  .l-footer-info__text span{
    display: block;
    color: var(--color_dark);
  }
  .l-footer-info__text:last-of-type{
    margin-block: 0;
  }
  .l-footer-menu{
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .l-footer-menu__navi{
    width: 100%;
  }
  .l-footer-menu__navi-item{
    line-height: 1.2;
    font-size: clamp(1.4rem,1.4vw,1.4rem);
  }
  .l-footer-menu__navi-item a{
    margin: 0;
    display: block;
    border-bottom: solid 1px var(--color_dark);
    padding: 15px;
  }
  .l-footer-menu__navi-item a:hover{
    color: var(--color_green);
  }
  .l-footer-menu__navi-sns{
    line-height: 1.2;
    font-size: clamp(1.4rem,1.4vw,1.4rem);
    border-bottom: solid 1px var(--color_dark);
    padding: 10px 15px;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .l-footer-menu__navi-sns a{
    display: block;
    width: 28px;
    margin: 0 0 0 8px;
  }
}

/*------------------------------------------------------------
  l-main-contact
------------------------------------------------------------*/
.l-main-contact{
  background: url(../images/common/ft-contact-bg.jpg) no-repeat center center / cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.l-main-contact__title{
  font-size: clamp(5rem,16vw,18rem);
  line-height: 1;
  opacity: .6;
  position: absolute;
  left: 0;
  bottom: -12px;
  text-align: center;
  width: 100%;
  color:rgba(0,0,0,.0);
  -webkit-text-stroke: 1px #FFF;
  letter-spacing: 1rem;
}
.l-main-contact__inner{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.l-main-contact__text{
  font-size: clamp(2rem,2.6vw,3.2rem);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0,0,0,.2);
  color: #fff;
  margin: 0 0 30px;
}
.l-main-contact__text strong{
  font-size: clamp(2.4rem,3vw,3.6rem);
  font-weight: 700;
}
.l-main-contact__inner .c-radius-button--contact{
  margin: 0 auto;
}
@media screen and (max-width: 798px){
  .l-main-contact{
    padding: 30px 0;
  }
  .l-main-contact__title{
    bottom: -2%;
    letter-spacing: .5rem;
  }
  .l-main-contact__inner{
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .l-main-contact__text{
    margin: 0 0 20px;
  }
}

/*------------------------------------------------------------
  p-merit
------------------------------------------------------------*/
.p-merit__inner{
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-merit__item{
  max-width: 920px;
  width: 90%;
  border-radius: 10px;
  border: solid 6px var(--color_orange);
  padding: 40px 50px;
  margin-top: 100px;
  position: relative;
  background-color: #fff;
}
.p-merit__item:nth-of-type(even){
  margin-left: auto;
}
.p-merit__item:after{
  content: '';
  position: absolute;
  bottom: -30px;
  width: calc(100% + 20px);
  height: 100%;
  border-radius: 10px;
  background-color: #EECFC3;
  z-index: -1;
}
.p-merit__item:nth-of-type(odd):after{
  right: -50px;
}
.p-merit__item:nth-of-type(even):after{
  left: -50px;
}
.p-merit__number{
  font-size: clamp(1.2rem,1.8vw,2.2rem);
  line-height: 1;
  font-weight: 900;
  padding: 3.5%;
  text-align: center;
  position: absolute;
  top: 0;
  z-index: 1;
}
.p-merit__number:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/balloon01.svg) no-repeat center center / contain;
  z-index: -1;
}
.p-merit__number strong{
  display: block;
  font-size: clamp(3rem,4.8vw,6.5rem);
  line-height: 1;
  letter-spacing: .5rem;
  font-weight: 700;
  margin-top: -5px;
}
.p-merit__item:nth-of-type(odd) .p-merit__number{
  right: 0;
  transform: translate(30%,-30%);
}
.p-merit__item:nth-of-type(even) .p-merit__number{
  left: 0;
  transform: translate(-30%,-30%);
}
.p-merit__item:nth-of-type(even) .p-merit__number:before{
  transform: scale(-1,1);
}
.p-merit__box{
  width: 80%;
}
.p-merit__item:nth-of-type(even) .p-merit__box{
  margin-left: auto;
}
.p-merit__midashi{
  font-size: clamp(2rem,2.6vw,3.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
  color: var(--color_orange);
}
.p-merit__text{
  font-size: clamp(1.4rem,1.4vw,1.6rem);
  line-height: 1.8;
}
.p-merit__text span{
  display: block;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  margin-top: 5px;
}
.p-merit__illust{
  position: absolute;
}
.p-merit__illust--01{
  width: 22%;
  right: 0;
  bottom: -5%;
}
.p-merit__illust--02{
  width: 15%;
  left: 5%;
  top: 50%;
  transform: translateY(-60%);
}
.p-merit__illust--03{
  width: 22%;
  right: 0;
  bottom: -5%;
}
.p-merit__illust--04{
  width: 18%;
  left: 2%;
  bottom: -8%;
}
.p-merit__flow{
  margin-top: 20px;
}
.p-merit__flow-notes{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.4;
  margin: 10px 0 0 1rem;
  text-indent: -1rem;
  text-align: right;
}
@media screen and (max-width: 798px){
  .p-merit__item{
    width: 96%;
    border: solid 3px var(--color_orange);
    padding: 30px 15px 20px;
    margin-top: 40px;
  }
  .p-merit__item:after{
    bottom: -10px;
    width: 100% ;
    height: 100%;
  }
  .p-merit__item:nth-of-type(odd):after{
    right: -10px;
  }
  .p-merit__item:nth-of-type(even):after{
    left: -10px;
  }
  .p-merit__number{
    padding: 4%;
  }
  .p-merit__number strong{
    letter-spacing: .25rem;
  }
  .p-merit__item:nth-of-type(odd) .p-merit__number{
    transform: translate(30%,-50%);
  }
  .p-merit__item:nth-of-type(even) .p-merit__number{
    transform: translate(-30%,-50%);
  }
  .p-merit__box{
    width: 100%;
  }
  .p-merit__midashi{
    margin: 0 0 5px;
  }
  .p-merit__illust--01{
    max-width: 90px;
    width: 24%;
    right: initial;
    bottom: initial;
    top: 0;
    left: 0;
    transform: translate(-25%,-70%);
  }
  .p-merit__illust--02{
    max-width: 70px;
    width: 18%;
    left: initial;
    top: 0;
    right: 0;
    transform: translate(20%,-50%);
  }
  .p-merit__illust--03{
    max-width: 100px;
    width: 28%;
    right: initial;
    bottom: initial;
    top: 0;
    left: 0;
    transform: translate(-20%, -60%);
  }
  .p-merit__illust--04{
    max-width: 70px;
    width: 18%;
    left: initial;
    top: 0;
    right: 0;
    transform: translate(20%,-15%);
  }
  .p-merit__flow{
    margin-top: 20px;
  }
  .p-merit__flow-illust {
    text-align: center;
  }
  .p-merit__flow-illust img{
    width: 500px;
  }
  .p-merit__flow-notes{
    text-align: left;
  }
}

/*------------------------------------------------------------
  p-form
------------------------------------------------------------*/
.p-form{
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.p-form input[type=text],
.p-form select,
.p-form textarea{
  appearance: none;
  -webkit-appearance: none;/*Google Chrome/Safari対応*/
  -moz-appearance: none;/*Firefox対応*/
  -o-appearance: none;/*Opera対応*/
}
.p-form select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
.p-form__head-text{
  font-size: clamp(1.4rem,1.4vw,1.6rem);
  line-height: 1.8;
}
.p-form__head-text--indent{
  position: relative;
  padding-left: 10px;
  margin-bottom: 5px;
}
.p-form__head-text--indent:before{
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--black);
}
.p-form__table{
  border-top: solid 1px var(--gray1);
  width: 100%;
  margin: 30px 0 50px;
}
.p-form__table tr{
  border-bottom: solid 1px var(--gray1);
}
.p-form__table th{
  padding: 20px 0;
  font-size: clamp(1.4rem,1.4vw,1.6rem);
  font-weight: 600;
  color: var(--color_dark);
  line-height: 1.2;
  text-align: left;
  width: 25%;
  vertical-align: top;
}
.p-form__table th strong{
}
.p-form__table th span{
  display: inline-block;
  background-color: var(--color_orange);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: clamp(1.1rem,1.1vw,1.2rem);
}
.p-form__table td{
  width: 75%;
  padding: 20px 0 20px 20px;
}
.p-form__select{
  position: relative;
}
.p-form__select:after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #333;
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}
.p-form__table td .w50{
  width: 50%;
}
.p-form__address{
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.p-form__address:last-of-type{
  margin-bottom: 0;
}
.p-form__address-name{
  font-size: clamp(1.4rem,1.4vw,1.6rem);
  font-weight: 500;
  width: 70px;
}
.p-form__address-item{
  width: calc(100% - 70px);
}
.p-form__table td input[type=text],
.p-form__table td select,
.p-form__table td textarea{
  background-color: var(--gray1);
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: none;
  font-size: clamp(1.4rem,1.4vw,1.6rem);
  font-weight: 500;
}
.p-form__table td input[type=text]::placeholder,
.p-form__table td textarea::placeholder{
  color: #C9C9C9;
}
.p-form__check{
  font-size: clamp(1.4rem,1.4vw,1.6rem);
}
.p-form__check a{
  color: var(--color_dark);
  text-decoration: underline;
}
.p-form__check a:hover{
  text-decoration: none;
}
.p-form__check input[type=checkbox]{
  transform: scale(1.25);
  margin-right: 10px;
  border: solid 1px var(--black);
}
.p-form__table .wpcf7-checkbox{
display: flex;	
justify-content: flex-start;	
flex-wrap: wrap;	
}	
.p-form__table .wpcf7-checkbox .wpcf7-list-item{	
display: block;	
width: fit-content;	
margin: 0 15px 10px 0;	
font-size: clamp(1.4rem,1.4vw,1.6rem);	
font-weight: 500;	
line-height: 1.4;	
}	
.p-form__table .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]{	
transform: scale(1.25);	
margin-right: 10px;	
border: solid 1px var(--black);	
}
.p-form__button{
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.p-form__button input[type=submit]{
  border-radius: 100px;
  border: solid 1px var(--color_dark);
  background-color: var(--color_dark);
  color: #fff;
  text-align: center;
  transition: .3s;
  padding: 20px 5px;
  font-size: clamp(1.8rem,2vw,2.2rem);
  font-weight: 700;
  line-height: 1;
  width: 100%;
  cursor: pointer;
}
.p-form__button input[type=submit]:hover{
  background-color: #fff;
  color: var(--color_dark);
}
.p-form__button:after{
  content: '';
  display: block;
  background: url(../images/common/arw-white.svg) no-repeat center center / contain;
  width: 10px;
  height: 16px;
  transition: .3s;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-140%);
}
.p-form__button:hover:after{
  background: url(../images/common/arw-dark.svg) no-repeat center center / contain;
}
.p-form .wpcf7-spinner{	
display: none;	
}
@media screen and (max-width: 798px){
  .p-form__table{
    margin: 20px 0 30px;
  }
  .p-form__table tr{
    border-bottom: solid 1px var(--gray1);
    display: block;
  }
  .p-form__table th{
    padding: 20px 0 10px;
    width: 100%;
  }
  .p-form__table th strong{
  }
  .p-form__table td{
    display: block;
    width: 100%;
    padding: 0 0 20px;
  }
  .p-form__select{
    position: relative;
  }
  .p-form__select:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
  }
  .p-form__table td .w50{
    width: 100%;
  }
  .p-form__address{
    display: block;
  }
  .p-form__address-name{
    margin: 0 0 3px;
    width: 100%;
  }
  .p-form__address-item{
    width: 100%;
  }
  .p-form__table td input[type=text],
  .p-form__table td select{
    padding: 10px;
  }
  .p-form__button input[type=submit]{
    padding: 15px 5px;
  }
  .p-form__button:after{
    right: 15px;
  }
}
.p-thanks__inner{
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0 80px;
}
.p-thanks__text{
  text-align: center;
  font-size: clamp(1.6rem,1.7vw,1.8rem);
  line-height: 1.8;
}

/*------------------------------------------------------------
  p-buy-archive
------------------------------------------------------------*/
.p-buy-archive__list{
  align-items: stretch;
}
.p-buy-archive__midashi{
  max-width: 300px;
  width: 90%;
  margin: 0 auto 30px;
}
.p-buy-archive__item{
  width: calc(100% / 4 - 15px);
  text-align: left;
  color: var(--black);
  display: block;
}
.p-buy-archive__item-image{
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 74%;
}
.p-buy-archive__item-image img{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%,-50%);
  transition: .3s;
}
.p-buy-archive__item:hover img{
  transform: translate(-50%,-50%) scale(1.05);
}
.p-buy-archive__item-area{
  margin-bottom: 5px;
}
.p-buy-archive__item-area span{
  background-color: var(--color_dark);
  color: #fff;
  padding: 3px 10px;
  border-radius: 40px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 500;
}
.p-buy-archive__item-text{
  font-size: clamp(1.4rem,1.4vw,1.5rem);
  line-height: 1.4;
  margin-bottom: 5px;
}
.p-buy-archive__item-price{
  font-size: clamp(1.2rem,1.3vw,1.3rem);
  text-align: right;
  line-height: 1;
}
.p-buy-archive__item-price strong{
  font-size: clamp(1.6rem,1.7vw,2rem);
  color: var(--color_red);
  font-weight: 700;
}
.p-buy-archive__item-price strong span{
  font-size: clamp(1.2rem,1.3vw,1.3rem);
  font-weight: 400;
}
@media screen and (max-width: 798px){
  .pg-top-buy__midashi{
    max-width: 240px;
    margin: 0 auto 20px;
  }
  .p-buy-archive__item{
    width: 100%;
  }
  .p-buy-archive__item-image{
    margin-bottom: 10px;
    overflow: hidden;
  }
  .p-buy-archive__item-area{
    margin-bottom: 3px;
  }
}

/*------------------------------------------------------------
  p-buy-taxonomy__slug
------------------------------------------------------------*/
.p-buy-taxonomy__slug-mass{
  margin-bottom: 10px;
}
.p-buy-taxonomy__slug-parent{
  background-color: var(--color_dark);
  color: #fff;
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
  padding: 10px 30px 10px 10px;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: .3s;
}
.p-buy-taxonomy__slug-parent:before,
.p-buy-taxonomy__slug-parent:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 2px;
  background-color: #fff;
  transition: .3s;
  transform: translateY(-50%);
}
.p-buy-taxonomy__slug-parent:after{
  transform: translateY(-50%) rotate(90deg);
}
.p-buy-taxonomy__slug-parent.open:after{
  transform: translateY(-50%) rotate(0);
}
.p-buy-taxonomy__slug-child a{
  display: block;
  font-size: clamp(1.4rem, 4.5vw, 1.6rem);
  line-height: 1.2;
  padding: 10px;
  border-bottom: solid 1px #e0e0e0;
  color: var(--color_dark);
  transition: .3s;
}
.p-buy-taxonomy__slug-child a:hover{
  background-color: var(--gray1);
}
.p-buy-taxonomy__slug-child{
  display: none;
}
.p-buy-taxonomy__slug-child a:last-of-type{
  border-bottom: none;
}
@media screen and (max-width: 798px){
  .pg-buy-taxonomy .p-buy-archive__item:nth-of-type(3n){
    margin-right: 10px;
  }
  .pg-buy-taxonomy .p-buy-archive__item:nth-of-type(2n){
    margin-right: 0;
  }
  .p-buy-taxonomy__slug-mass{
    margin-bottom: 5px;
  }
}

/*------------------------------------------------------------
  p-pagination
------------------------------------------------------------*/
.p-pagination{
  text-align: center;
}
.p-pagination .page-numbers{
  padding: 10px 1px;
  width: 40px;
  margin: 0 5px;
  display: inline-block;
  text-align: center;
  border: solid 1px var(--color_dark);
  border-radius: 3px;
  background-color: #fff;
  color: var(--color_dark);
  font-size: clamp(1.2rem,1.5vw,1.8rem);
  line-height: 1;
  transition: .3s;
}
.p-pagination .prev,
.p-pagination .next{
  display: none;
}
.p-pagination .page-numbers.current,
.p-pagination .page-numbers:hover{
  background-color: var(--color_dark);
  color: #fff;
}
@media screen and (max-width: 798px){
  .p-pagination .page-numbers{
    width: 30px;
  }
}