@charset "UTF-8";

/* ----------------------------------------------
 common
------------------------------------------------- */

/* -----------------
 HTML5 Reset
-------------------- */

article, aside, dialog, figure, footer, header,hgroup, menu, nav, section{
  display: block;
  text-align:justify;
}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,l,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{
  margin:0;
  padding:0
}
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* -----------------
 font
-------------------- */

*{
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
}
.ming{
   font-family: "Noto Serif JP", serif;
}
.number{
  font-family: "Zalando Sans", sans-serif;
  font-optical-sizing: auto;
}

/* -----------------
 img
-------------------- */

img{
  border-style: none;
  border-width: 0;
  vertical-align: bottom;
}
picture img,
figure img{
  width: 100%;
}

/* -----------------
 link
-------------------- */

a{
  color: #0a5f0a;
  outline: none;
  text-decoration: underline;
  transition: .2s;
}
a:hover{
  color: #0a5f0a;
  outline: none;
  text-decoration: none;
}
a[href^="tel:"] {
  color: #000;
  font-family: "Zalando Sans", sans-serif;
  font-optical-sizing: auto;
  pointer-events: none;
  text-decoration: none;
}
@media screen and (max-width:767px) { 
  a[href^="tel:"] {
    color: #0a5f0a;
    pointer-events: auto;
    text-decoration: underline;
  }
}

/* -----------------
 headline
-------------------- */

h2.h2-normal{
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4em;
  margin-bottom: 30px;
}
h3.h3-normal{
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.6em;
  margin-bottom: 20px;
}
h3.h3-line{
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.6em;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}
h3.h3-line:before{
  background: #0a5f0a;
  content: "";
  display: inline-block;
  height: 5px;
  width: 1em;
  transform: translateY(-50%);
  position :absolute;
  left: 0;
  top: 24px;
}
@media screen and (max-width:767px) { 
  .block-common h2.h2-normal{
    font-size: 2.6rem;
  }
  h3.h3-normal{
    font-size: 2.4rem;
  }
  h3.h3-line{
    font-size: 2.4rem;
  }
}

/* -----------------
 btn
-------------------- */

/* 基本設定（斜め） */

a.btn-base{
  box-sizing: border-box;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  line-height: 1em;
  padding: 20px 50px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width:767px) { 
  a.btn-base{
    padding-bottom: 25px;
    padding-top: 25px;
  }
}

/* 個別設定 */

a.cta{
  background: #c80064;
  border-bottom: 1px solid #c80064;
  border-top: 1px solid #c80064;
  color: #fff;
}
a.cta:hover{
  border-bottom: 1px solid #c80064;
  border-top: 1px solid #c80064;
  color: #c80064;
}
a.normal{
  background: #0a5f0a;
  border-bottom: 1px solid #0a5f0a;
  border-top: 1px solid #0a5f0a;
  color: #fff;
}
a.normal:hover{
  border-bottom: 1px solid #0a5f0a;
  border-top: 1px solid #0a5f0a;
  color: #0a5f0a;
}
a.normal-wh{
  background: #fff;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #0a5f0a;
}
a.normal-wh:hover{
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #fff;
}
a.cta:after,
a.normal:after{
  background: url(/common/img/common/icon-btn-arrow.png) no-repeat;
}
a.normal-wh:after{
  background: url(/common/img/common/icon-btn-arrow-gr.png) no-repeat;
}
a.cta:hover:after{
  background: url(/common/img/common/icon-btn-arrow-re.png) no-repeat;
}
a.normal:hover:after{
  background: url(/common/img/common/icon-btn-arrow-gr.png) no-repeat;
}
a.normal-wh:hover:after{
  background: url(/common/img/common/icon-btn-arrow.png) no-repeat;
}
a.cta:after,
a.normal:after,
a.normal-wh:after{
  background-size: contain;
  content: "";
  display: inline-block;
  height: 25px;
  width: 25px;
  transform: translateY(-50%);
  transition: .2s;
  position :absolute;
  right: 25px;
  top: 50%;
  z-index: 1;
}
a.cta:hover:after,
a.normal:hover:after,
a.normal-wh:hover:after{
  background-size: contain;
  content: "";
}
a.cta:before,
a.normal:before{
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s;
  transition-property: transform;
}
a.normal-wh:before{
  background: #0a5f0a;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s;
  transition-property: transform;
}
a.cta:hover:before,
a.normal:hover:before,
a.normal-wh:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}
a.cta span,
a.normal span,
a.normal-wh span{
  position: relative;
}

/* -----------------
 list
-------------------- */

.list-common-caution{
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-common-caution li{
  font-size: 1.5rem;
  line-height: 1.6em;
  margin-bottom: 5px;
  padding-left: 1em;
  text-indent: -1em;
}
.list-common-caution li:nth-last-of-type(1){
  margin-bottom: 0;
}

/* -----------------
 table要素
-------------------- */

/* ノーマル */

.block-table-normal{
  border-top: 1px solid #ccc;
}
.block-table-normal .block{
  border-bottom: 1px solid #ccc;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4em;
  display: flex;
  justify-content: space-between;
}
.block-table-normal .block span{
  font-size: 1.5rem;
}
.block-table-normal .block .title{
  box-sizing: border-box;
  padding: 20px 1em 20px 0;
  width: calc(100% - 300px);
}
.block-table-normal .block .contents{
  background: #0a5f0a;
  box-sizing: border-box;
  color: #fff;
  padding: 20px 1em;
  text-align: right;
  width: 300px;
}
@media screen and (max-width:767px) { 
  .block-table-normal .block{
    font-size: 1.6rem;
  }
  .block-table-normal .block span{
    display: block;
    font-size: 1.4rem;
  }
  .block-table-normal .block .title{
    width: calc(100% - 32%);
  }
  .block-table-normal .block .contents{
    padding-left: .5em;
    padding-right: .5em;
    width: 32%;
  }
}

/* -----------------
 タグ要素
-------------------- */

.common-tag{
  background: #0a5f0a;
  box-sizing: border-box;
  clip-path: polygon(40px 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  color: #fff;
  display: inline-block;
  line-height: 1em;
  padding: 7px 3.5em;
}
.common-tag.h2-add{
  font-size: 1.5rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
}
@media screen and (max-width:767px) {
  .block-common .common-tag.h2-add{
    font-size: 1.3rem;
  }
}

/* -----------------
 other
-------------------- */

::selection {
  background: #daece4;
}
.align-left{
  text-align: left !important;
}
.align-center{
  text-align: center !important;
}
.align-right{
  text-align: right !important;
}
.clearfix:after{
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix{
  min-height: 1px;
}
p.normal{
  font-size: 1.7rem;
  line-height: 2.0em;
  margin-bottom: 1em;
}
p.normal:nth-last-of-type(1){
  margin-bottom: 0;
}
.mb0{
  margin-bottom: 0;
}
picture.diagonally img{
  clip-path: polygon(0 10%, 100% 0, 100% calc(100% - 10%) , 0 100%);
}

/* -----------------
 flex-box
-------------------- */

/* 子要素の折り返し */
.flex-wrap{
  display: flex;
  flex-wrap: wrap;
}
.flex-nowrap{
  display: flex;
}

/* 水平方向の揃え */
.jc-center{
  justify-content: center;
}
.jc-between{
  justify-content: space-between;
}
.jc-around{
  justify-content: space-around;
}
.jc-end{
  justify-content: flex-end;
}

/* 垂直方向の揃え */
.al-center{
  align-items: center;
}
.al-flex-start{
  align-items: flex-start;
}
.al-flex-end{
  align-items: flex-end;
}

/* カラム */
.column-2{
  gap: 6%;
}
.column-2 .block{
  display: block;
  width: 50%;
}
@media screen and (max-width:767px) { 
  .flex-nowrap{
    display: block;
  }
  .column-2 .block{
    width: 100%;
  }
}

/* -----------------
 base
-------------------- */

html{
  font-size: 10px;
}
body{
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width:767px) { 
  body{
    -webkit-text-size-adjust: 100%;
  }
}
.preload * {
  transition: none !important;
}
.no-scroll {
  overflow: hidden;
}
.for-sp,
.for-sp-inline{
  display: none;
}
@media screen and (max-width:767px) { 
  .for-pc{
    display: none;
  }
  .for-sp{
    display: block;
  }
  .for-sp-inline{
    display: inline-block;
  }
}

/* -----------------
 common-layout
-------------------- */

#wrapper{
  margin: 0;
  padding-top: 125px;
}
.layout{
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  max-width: 1064px;
}
.block-common-diagonally{
  clip-path: polygon(0 9vw, 100% 0, 100% calc(100% - 9vw) , 0 100%);
  padding: 200px 0;
  text-align: left;
}
.block-common-diagonally.bg-gray{
  background: #e6e6e6;
}
.block-common-diagonally.bg-green{
  background: #0a5f0a;
  color: #fff;
}
.block-common-diagonally.bg-light-green{
  background: #e4ece4;
}
.block-common-diagonally.bg-green .common-tag{
  background: #fff;
  color: #0a5f0a;
}
.block-common-normal{
  margin: 70px auto 70px; 
}
@media screen and (max-width:767px) { 
  #wrapper{
    padding-top: 70px;
  }
  .layout{
    padding: 0 5%;
    width: 100%;
  }
  .block-common-diagonally{
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

/* ヘッダー */

.header{
  background: rgba(254,254,254,1);
  height: 125px;
  width: 100%;
  z-index: 100;
  transition: .5s;
  position: fixed;
  left: 0;
  top: 0;
  border-bottom: 1px solid #ddd;
}
.header-logo-btn-area{
  box-sizing: border-box;
  margin-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
}
.header-logo-btn-area ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header-logo-btn-area ul li{
  line-height: 1em;
}
.header-logo-btn-area ul li:nth-last-of-type(1){
  margin-left: 15px;
}
.header-logo-btn-area ul li a{
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  height: 52px;
  padding: 1em;
  position: relative;
  text-decoration: none;
  transition: .5s;
  width: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo-btn-area ul li a.tel{
  background: #0a5f0a;
  border-bottom: 1px solid #0a5f0a;
  border-top: 1px solid #0a5f0a;
  font-size: 1.9rem;
}
.header-logo-btn-area ul li a.mail{
  background: #c80064;
  border-bottom: 1px solid #c80064;
  border-top: 1px solid #c80064;
}
.header-logo-btn-area ul li a span{
  display: inline-block;
  position: relative;
}
.header-logo-btn-area ul li a.tel span{
  margin-left: 25px;
}
.header-logo-btn-area ul li a.tel span:before{
  background: url(/common/img/common/icon-header-tel.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 22px;
  width: 14px;
  transform: translateY(-50%);
  position :absolute;
  left: -25px;
  top: 50%;
}
.header-logo-btn-area ul li a.mail span{
  margin-left: 30px;
}
.header-logo-btn-area ul li a.mail span:before{
  background: url(/common/img/common/icon-header-mail.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 13px;
  width: 20px;
  transform: translateY(-50%);
  position :absolute;
  left: -30px;
  top: 50%;
}
.header-logo-btn-area ul li a.mail:hover{
  border-bottom: 1px solid #c80064;
  border-top: 1px solid #c80064;
  color: #c80064;
}
.header-logo-btn-area ul li a.mail:hover span:before{
  background: url(/common/img/common/icon-header-mail-re.png) no-repeat;
  background-size: contain;
  content: "";
}
.header-logo-btn-area ul li a.mail:before{
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s;
  transition-property: transform;
}
.header-logo-btn-area ul li a.mail:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}
.header-logo-btn-area ul li a.mail span{
  position: relative;
}
.logo{
  margin: 0;
  max-width: 270px;
  transition: .5s;
  width: 27%;
}
.logo img{
  width: 100%;
}
.header.fixed{
  height: 95px;
}
.header.fixed .header-logo-btn-area ul li a{
  height: 36px;
  padding-bottom: .5em;
  padding-top: .5em;  
}
.header.fixed .logo{
  margin: 0;
  max-width: 200px;
  width: 20%;
}
.btn-menu-sp{
  display:none;
}
@media screen and (max-width:767px) {
  .header{
    height: 70px;
  }
  .header-logo-btn-area{
    margin-top: 18px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .header-logo-btn-area ul{
    display: none;
  }
  .logo{
    max-width: 220px;
    width: 220px;
  }
  .header.fixed{
    height: 70px;
  }
  .header.fixed .logo{
    max-width: 220px;
    width: 220px;
  }
  .btn-menu-sp {
    display: block;
    text-align: center;
    position: absolute;
    right: 5%;
    top: 25px;
    z-index: 10;
  }
  .btn-menu-sp p{
    font-size: 11px;
    line-height: 1em;
    margin-top: 5px;
  }

/* 共通パーツ */
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
  }
  .menu-trigger {
    height: 22px;
    position: relative;
    width: 35px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0a5f0a;
    border-radius: 2px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px; /*ここのpxとkeyframesのtranslateYのpxを合わせる*/
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

/* 個別パーツ */

  .menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
  }
  @-webkit-keyframes menu-bar01 {
    0% {
      -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(10px) rotate(45deg);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  .menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
  }
  @-webkit-keyframes menu-bar02 {
    0% {
      -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar02 {
    0% {
      transform: translateY(-10px) rotate(-45deg);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
  }
  @-webkit-keyframes active-menu-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(10px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(10px) rotate(45deg);
    }
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
  }
  @-webkit-keyframes active-menu-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-10px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(-10px) rotate(-45deg);
    }
  }
}

/* gnav */

.gnav{
  margin: 25px 20px 0 0;
  z-index: 100;
}
.header.fixed .gnav{
  margin-top: 15px;
}
.gnav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gnav-list li{
  box-sizing: border-box;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1em;
  margin: 0 3em 0 0;
  padding: 0;
  transition: .5s;
}
.gnav-list li:nth-last-of-type(1){
  margin-right: 0;
}
.gnav-list li a{
  color: #000;
  text-decoration: none;
}
.gnav-list li a,
.gnav-list li span{
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.gnav-list li a:hover,
.gnav-list li span:hover{
  color: #0a5f0a;
}
.gnav-list li a:after,
.gnav-list li span:after{
  background: url(/common/img/common/icon-arrow-gr.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 6px;
  width: 5px;
  transform: translateY(-50%);
  position :absolute;
  left: -10px;
  top: 50%;
}
.gnav-list li a:before,
.gnav-list li span:before{
  background: #0a5f0a;
  content: "";
  height: 2px;
  width: 100%;
  position :absolute;
  left: 0;
  bottom: -7px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s;
}
.gnav-list li a:hover:before,
.gnav-list li span:hover:before{
  transform: scale(1, 1);
}
.gnav-list li .gnav-sub{
  background: #e4ece4;
  display: none;
  padding: 0;
  width: calc(100% - 30px);
  z-index: 10;
  position: absolute;
  left: 15px;
  top: 126px;
}
.gnav-list li .gnav-sub .layout{
  box-sizing: border-box;
  margin: 0 auto;
  padding: 50px 3% 35px;
  position: relative;
  text-align: left;
  max-width: 100%;
}
.gnav-list li .gnav-sub .layout .thum-area{
  text-align: center;
  width: 300px;
}
.gnav-list li .gnav-sub .layout .thum-area picture{
  display: block;
  margin-bottom: 20px;
}
.gnav-list li .gnav-sub .layout .thum-area a{
  font-size: 1.8rem;
}
.gnav-list li .gnav-sub .layout .link-area{
  width: calc(100% - 300px - 70px);
}
.gnav-list li .gnav-sub .layout .link-area p{
  border-left: 2px solid #0a5f0a;
  color: #0a5f0a;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding: 5px 0 5px 10px;
}
.gnav-list li .gnav-sub .layout .link-area ul{
  border-bottom: 1px solid #fff;
  list-style: none;
  margin: 0;
  padding: 0 0 1.5em;
  display: flex;
  flex-wrap: wrap;
}
.gnav-list li .gnav-sub .layout .link-area ul:nth-last-of-type(1){
  border-bottom: none;
}
.gnav-list li .gnav-sub .layout .link-area ul li{
  font-size: 1.8rem;
  margin: 0px 4em 20px 0;
  padding-left: 0;
}
.gnav-list li .gnav-sub .layout .link-area ul li:nth-last-of-type(1){
  margin-right: 0;
}
.gnav-list li .gnav-sub .layout .link-area ul+p{
  margin-top: 1.5em;
}
.gnav-list li .gnav-sub .layout .thum-area a:after,
.gnav-list li .gnav-sub .layout .link-area ul li a:after{
  background: url(/common/img/common/icon-btn-arrow-gr-02.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 17px;
  transform: translateY(-50%);
  transition: .2s;
  width: 17px;
  position :absolute;
  left: auto;
  right: -1.5em;
  top: 50%;
}
.gnav-list li .gnav-sub .layout .thum-area a:hover:after,
.gnav-list li .gnav-sub .layout .link-area ul li a:hover:after{
  right: -1.7em;
}
.header.fixed .gnav-list li .gnav-sub{
  top: 95px;
}
@media screen and (min-width:768px) and ( max-width:900px) {
  .gnav-list li{
  margin-right: 2em;
  }
}
@media screen and (max-width:767px) { 
  .gnav,
  .header.fixed .gnav {
    background: transparent;
    border-top: none;
    height: 100%;
    margin: 0;
    overflow-y: auto;
    padding: 0;
    text-align: left;
    transition: .5s;
    visibility: hidden;
    width: 100%;
    z-index: 10000;
    position: fixed;
    left: 0;
    top: 70px;
  }
  .gnav.open,
  .header.fixed .gnav.open {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    visibility: visible;
    width: 100%;
  }
  .gnav .inner,
  .header.fixed .gnav .inner {
    background: #fff;
    border-top: 1px solid #ccc;
    display: block;
    float: right;
    list-style: none;
    margin: 0;
    padding-bottom: 100px;
    width: 100%;
    transform: translate(100%, 0);
    transition: .5s;
  }
  .gnav.open .inner,
  .header.fixed .gnav.open .inner{
    transform: translate(0, 0);
  }
  .gnav-list{
    display: block;
    text-align: left;
  }
  .gnav-list li,
  .header.fixed .gnav-list li{
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .gnav-list li a,
  .gnav-list li span{
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    color: #333;
    display: block;
    line-height: 1.2em;
    margin: 0;
    padding: 25px 2.5em 25px 1em;
    position: relative;
    text-align: left;
    width: 100%;
  }
  .gnav-list li a:hover,
  .gnav-list li span:hover{
    color: #000;
  }
  .gnav-list li a:after,
  .gnav-list li span:after{
    background: url(/common/img/common/icon-btn-arrow-gr-02.png) no-repeat;
    background-size: contain;
    content: "";
    height: 24px;
    width: 24px;
    left: auto;
    right: 12px;
  }
  .gnav-list li a:before,
  .gnav-list li span:before{
    background: none;
    height: 0;
    width: 0;
    position :static;
  }
  .gnav-list li span.gnav-open:after{
    background: none;
    border-color: #0a5f0a;  
    border-style: solid;
    border-width: 2px 2px 0 0;
    box-sizing: border-box;
    content: "";
    display: inline-block;
    height: 12px;
    transform: translateY(-50%)  rotate(135deg);
    transition: .3s;
    width: 12px;
    position: absolute;
    left: auto;
    right: 1em;
    top: 50%;
  }
  .gnav-list li span.gnav-close:after{
    transform: rotate(-45deg);
  }
  .gnav-list li .gnav-sub{
    background: #fff;
    border-radius: 0;
    padding-bottom: 0;
    padding-top: 0;
    position: static;
    width: 100%;
  }
  .gnav-list li .gnav-sub .layout{
    padding: 0;
  }
  .gnav-list li .gnav-sub .layout .thum-area{
   display: none;
  }
  .gnav-list li .gnav-sub .layout .link-area{
    width: 100%;
  }
  .gnav-list li .gnav-sub .layout .link-area p{
    border-left: 2px solid #0a5f0a;
    font-size: 1.8rem;
    margin: 1.8em 0 20px 1em;
    padding: 5px 0 5px 10px;
  }
  .gnav-list li .gnav-sub .layout .link-area ul{
    background: #e4ece4;
    border-bottom: none;
    border-top: none;
    padding-bottom: 0;
    display: block;
  }
  .gnav-list li .gnav-sub .layout .link-area ul li{
    margin: 0;
  }
  .gnav-list li .gnav-sub .layout .link-area ul li a{
    border-bottom: 1px solid #fff;
    padding-left: 2em;
  }
  .gnav-list li .gnav-sub .layout .link-area ul+p{
    margin-top: 1.8em;
  }
  .gnav-list li .gnav-sub .layout .link-area ul li a:after{
    height: 20px;
    width: 20px;
    right: 13px;
  }
  .gnav .inner .for-sp{
    text-align: center;
  }
  .gnav .inner .for-sp a.btn-base{
    display: block;
    margin: 40px auto ;
    width: 90%;
  }
  .gnav .inner .for-sp a.tel{
    display: inline-block;
    font-size: 3.6rem;
    font-weight: 700;
    margin: 0 auto 0 50px;
    position: relative;
    text-decoration: none;
  }
  .gnav .inner .for-sp a.tel:before{
    background: url(/common/img/common/icon-tel.png) no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 35px;
    width: 35px;
    position :absolute;
    left: -50px;
    top: 6px;
  }
  .gnav .inner .for-sp a.tel span{
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
  }
}

/* CTA */

.block-common-cta{
  background: #0a5f0a;
  margin-bottom: 60px;
  padding: 50px 0 60px;
}
.block-common-cta h2{
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.6em;
  margin-bottom: 60px;
}
.block-common-cta .flex-nowrap{
  gap: 6%;
}
.block-common-cta .block-cta{
  background: #fff;
  box-sizing: border-box;
  padding: 50px 3%;
  position: relative;
  width: 420px;
}
.block-common-cta .block-cta span.icon{
  display: inline-block;
  height: 80px;
  margin-bottom: 20px;
  width: 80px;
}
.block-common-cta .block-cta.form span.icon{
  background: url(/common/img/common/icon-mail.png) no-repeat left center / cover;
}
.block-common-cta .block-cta.tel span.icon{
  background: url(/common/img/common/icon-tel.png) no-repeat left center / cover;
}
.block-common-cta .block-cta h3{
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2em;
}
.block-common-cta .block-cta.form h3{
  color: #c80064;
}
.block-common-cta .block-cta.form a{
  display: inline-block;
  margin-top: 25px;
  padding-left: 20px;
  width: 100%;
}
.block-common-cta .block-cta.tel h3{
  color: #0a5f0a;
}
.block-common-cta .block-cta.tel a{
  color: #0a5f0a;
  display: inline-block;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1em;
  margin-top: 30px;
}
.block-common-cta .block-cta.tel p{
  color: #0a5f0a;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1em;
  margin-top: 10px;
}
@media screen and (max-width:767px) { 
  .block-common-cta h2{
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .block-common-cta .flex-nowrap{
    gap: 0;
  }
  .block-common-cta .block-cta{
    margin-bottom: 30px;
    padding: 30px 3%;
    width: 100%;
  }
  .block-common-cta .block-cta:nth-last-of-type(1){
    margin-bottom: 0;
  }
  .block-common-cta .block-cta span.icon{
    height: 60px;
    margin-bottom: 20px;
    width: 60px;
  }
  .block-common-cta .block-cta h3{
    font-size: 2.0rem;
  }
  .block-common-cta .block-cta.tel p{
    margin-top: 20px;
  }
}

/* フッター */

footer{
  padding-bottom: 10px;
}
footer .flex-nowrap ul{
  list-style: none;
  margin: 0 70px 0 1.5em;
  padding: 0;
}
footer .flex-nowrap ul:nth-last-of-type(1){
  margin-right: 0;
}
footer .flex-nowrap ul li{
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 1em;
}
footer .flex-nowrap ul li:nth-last-of-type(1){
  margin-bottom: 0;
}
footer .flex-nowrap ul li a{
  color: #000;
  position: relative;
  text-decoration: none;
}
footer .flex-nowrap ul li a:hover{
  color: #0a5f0a;
  text-decoration: underline;
}
footer .flex-nowrap ul li a:after{
  background: url(/common/img/common/icon-arrow-gr.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 6px;
  width: 5px;
  transform: translateY(-50%);
  position :absolute;
  left: -10px;
  top: 50%;
}
footer .footer-bottom{
  border-top: 1px solid #c80064;
  margin-top: 50px;
  padding-top: 50px;
}

footer .footer-bottom .info-area{
  width: calc(100% - 200px);
}

footer .footer-bottom .info-area .logo{
  margin-right: 20px;
  width: 25%;
}
footer .footer-bottom .info-area .logo img{
  width: 100%;
}
footer .footer-bottom .info-area address p{
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.2em;
  margin-bottom: .4em;
}
footer .footer-bottom .info-area address p:nth-of-type(1){
  font-size: 1.6rem;
  margin-bottom: .7em;
}
footer .footer-bottom .info-area address p:nth-last-of-type(1){
  margin-bottom: 0;
}
footer .footer-bottom p.copyright{
  font-size: 1.3rem;
  line-height: 1.2em;
}
@media screen and (max-width:767px) { 
  footer{
    padding-bottom: 20px;
  }
  footer .layout{
    padding-left: 0;
    padding-right: 0;
  }
  footer .flex-nowrap ul{
    margin-left: 0;
    margin-right: 0;
  }
  footer .flex-nowrap ul:nth-of-type(1) {
    border-top: 1px solid #ccc;
  }
  footer .flex-nowrap ul li{
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0;
  }
  footer .flex-nowrap ul li a{
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    color: #333;
    display: block;
    line-height: 1.2em;
    margin: 0;
    padding: 25px 2.5em 25px 1em;
    position: relative;
    text-align: left;
    width: 100%;
  }
  footer .flex-nowrap ul li a:after{
    background: url(/common/img/common/icon-btn-arrow-gr-02.png) no-repeat;
    background-size: contain;
    content: "";
    height: 24px;
    transform: translateY(-50%);
    width: 24px;
    position :absolute;
    left: auto;
    right: 12px;
    top: 50%;
  }
  footer .footer-bottom{
    margin-top: 0;
    padding-top: 20px;
  }
  footer .footer-bottom .info-area{
    display: none;
  }
  footer .footer-bottom p.copyright{
    text-align: center;
  }
}

.pagetop{
  display: none;
  transition: .5s;
}
.pagetop a{
  display: block;
  height: 60px;
  width: 60px;  
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 10;
}
.pagetop a:hover{
  height: 70px;
  width: 70px;
  bottom: 45px;
  right: 15px;
}
.pagetop a img{
  border: 1px solid #fff;
  border-radius: 50%;
  width: 100%;
}
@media screen and (max-width:767px) { 
  .pagetop a{
    height: 50px;
    width: 50px;
    right: 10px;
  }
  .pagetop a:hover{
    height: 60px;
    width: 60px;
    right: 15px;
  }
}

/* 下層共通 */

.common-h1-area{
  background: #eee;
  border-top: 10px solid #c80064;
  margin-bottom: 100px;
}
.common-h1-area .layout{
  box-sizing: border-box;
  height: 240px;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: left;
  display: flex;
  align-items: center;
}
.common-h1-area .layout div span{
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.common-h1-area .layout div h1,
.common-h1-area .layout div div{
  color: #0a5f0a;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.4em;
}
@media screen and (max-width:767px) {
  .common-h1-area{
    border-top: 7px solid #c80064;
    margin-bottom: 70px;
  }
  .common-h1-area .layout{
    height: 160px;
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .common-h1-area .layout div span{
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .common-h1-area .layout div h1,
  .common-h1-area .layout div div{
    font-size: 3.2rem;
    line-height: 1.4em;
  }
}

.block-common{
  margin-bottom: 100px;
  text-align: left;
}
.block-common:nth-last-of-type(1){
  margin-bottom: 0;
}
.block-common p.lead{
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 2.0em;
}
.block-common-s{
  margin-bottom: 60px;
  text-align: left;
}
@media screen and (max-width:767px) {
  .block-common{
    margin-bottom: 70px;
    text-align: left;
  }
  .block-common p.lead{
    font-size: 1.8rem;
  }
  .block-common-s{
    margin-bottom: 40px;
  }
}

.block-breadcrumbs{
  background: #eee;
  margin-top: 100px;
  padding: 15px 0;
  text-align: left;
}
.breadcrumbs ul{
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2em;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs ul li{
  margin: 0 7px 0 0;
  padding: 0;
}
.breadcrumbs ul li:nth-last-of-type(1){
  margin-right: 0;
}
.breadcrumbs ul li a{
  display: inline-block;
  text-decoration: none;
}
.breadcrumbs ul li a:hover{
  text-decoration: underline;
}
.breadcrumbs ul li span.arrow{
  font-size: 1.1rem;
  font-weight: 400;
  margin-left: 7px;
}
@media screen and (max-width:767px) {
  .block-breadcrumbs{
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow-x: auto;
  }
  .breadcrumbs ul{
    flex-wrap: nowrap;
  }
  .breadcrumbs ul li{
    display: table-cell;
    white-space: nowrap;
  }
}

/* 3階層目ありindex */

.h2-layer-index-area{
  margin-bottom: 30px;
  transform: rotate(-5deg);
}
.h2-layer-index-area div{
  transform: skewX(-10deg); 
}
.h2-layer-index-area div h2{
  font-size: 6.6rem;
  font-weight: 900;
  line-height: 1.2em;
  text-align: left;
}
.block-common-layer-index{
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.block-common-layer-index:nth-last-of-type(1){
  margin-bottom: 0;
}
.block-common-layer-index a{
  display: block;
  margin-bottom: 40px;
  text-align: left;
  text-decoration: none;
  transition: .2s;
  width: 47%;
}
.block-common-layer-index a picture{
  display: block;
  margin-bottom: 20px;
}
.block-common-layer-index a picture img{
  clip-path: polygon(0 12%, 100% 0, 100% calc(100% - 12%) , 0 100%);
}
.block-common-layer-index a h3{
  color: #0a5f0a;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 15px;
  position: relative;
}
.block-common-layer-index a h3:before{
  background: url(/common/img/common/icon-btn-arrow-gr.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 22px;
  width: 22px;
  transform: translateY(-50%);
  transition: .2s;
  position :absolute;
  right: -1.5em;
  top: 50%;
}
.block-common-layer-index a:hover h3:before{
  right: -1.8em;
}
.block-common-layer-index a p{
  color: #000;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.8em;
}
.block-common-layer-index a:hover  p{
  text-decoration: underline;
}
@media screen and (max-width:767px) { 
  .h2-layer-index-area{
    margin-bottom: 0;
  }
  .h2-layer-index-area div h2{
    font-size: 3.8rem;
  }
  .block-common-layer-index{
    margin-bottom: 30px;
    display: block;
  }
  .block-common-layer-index:nth-last-of-type(1){
    margin-bottom: 0;
  }
  .block-common-layer-index a{
    margin-bottom: 30px;
    width: 100%;
  }
  .block-common-layer-index a:nth-last-of-type(1){
    margin-bottom: 0;
  }
  .block-common-layer-index a h3{
    font-size: 2.0rem;
  }
}

/* 料金 */

.block-common-service-cost{
  border-top: 1px solid #0a8108;
}
.block-common-service-cost .block{
  border-bottom: 1px solid #0a8108;
  border-left: 1px solid #0a8108;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.2em;
  display: flex;
  justify-content: space-between;
}
.block-common-service-cost .block span{
  font-size: 1.6rem;
}
.block-common-service-cost .block .title{
  background: #fff;
  box-sizing: border-box;
  padding: 30px 1.5em;
  width: calc(100% - 380px);
}
.block-common-service-cost .block .contents{
  background: #0a5f0a;
  box-sizing: border-box;
  color: #fff;
  padding: 30px 1.5em;
  width: 380px;
}
.block-service-detail-bg-none ul.list-common-caution,
.cost ul.list-common-caution{
  margin-top: 20px;
}
@media screen and (max-width:767px) {
  .layout.service-cost{
    padding-left: 0;
    padding-right: 0;
  }
  .layout.service-cost .common-tag,
  .layout.service-cost h2{
    margin-left: 5%;
    margin-right: 5%;
  }
  .block-common-service-cost .block{
  border-left: none;
  font-size: 1.8rem;
  }
  .block-common-service-cost .block span{
    display: block;
    font-size: 1.4rem;
  }
  .block-common-service-cost .block .title{
  padding: 20px .5em;
  width: calc(100% - 40%);
  }
  .block-common-service-cost .block .contents{
    padding-left: .5em;
    padding-right: .5em;
    width: 40%;
  }
}

/* 新着情報 */

.block-common-news{
  border-top: 1px solid #ccc;
}
.block-common-news .flex-nowrap{
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}
.block-common-news .flex-nowrap time{
  background: #0a5f0a;
  box-sizing: border-box;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1em;
  padding: 8px 1em;
  text-align: center;
  width: 150px;
}
.block-common-news .flex-nowrap a{
  color: #000;
  font-size: 1.7rem;
  line-height: 1.4em;
  text-decoration: none;
  width: calc(100% - 150px - 30px);
  display: flex;
  align-items: center;
}
.block-common-news .flex-nowrap a:hover{
  color: #0a5f0a;
  text-decoration: underline;
}
@media screen and (max-width:767px) { 
  .block-common-news .flex-nowrap time{
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    width: 8em;
  }
  .block-common-news .flex-nowrap a{
    text-decoration: none;
    width: 100%;
  }
}

/* よくあるご質問 */

.block-common-faq{
  text-align: left;
}
.block-common-faq .block{
  border: 1px solid #0a5f0a;
  margin-bottom: 10px;
}
.block-common-faq .block:nth-last-of-type(1){
  margin-bottom: 0;
}
.block-common-faq .block .question{
  background: #fff;
  cursor: pointer;
  padding: 30px 20px;
}
.block-common-faq .block .question h3{
  cursor: pointer;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 2em;
  padding-right: 1.5em;
  position: relative;
}
.block-common-faq .block .question h3:before{
  content: "Q.";
  display: inline-block;
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
}
.block-common-faq .block .question h3:after{
  border-color: #0a5f0a;
  border-style: solid;
  border-width: 2px 2px 0 0;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  height: 15px;
  transform: translateY(-50%) rotate(135deg);
  transition: .3s;
  width: 15px;
  position: absolute;
  right: 0;
  top: 50%;
}
.block-common-faq .block .question.open h3:after{
  transform: rotate(-45deg);
}
.block-common-faq .block .answer{
  background: #fff;
  display: none;
  padding: 0 20px 30px;
}
.block-common-faq .block .answer p{
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.0em;
  margin-bottom: 1em;
}
.block-common-faq .block .answer p:nth-last-of-type(1){
  margin-bottom: 0;
}
.block-common-faq .block .answer ul{
  margin: 0 0 0 1em;
  padding: 0;
}
.block-common-faq .block .answer ul li{
  font-size: 1.6rem;
  line-height: 1.6em;
  margin-bottom: 10px;
}
.block-common-faq .block .answer ul li:nth-last-of-type(1){
  margin-bottom: 0;
}
.block-common-faq .block .answer p+ul{
  margin-top: 1.5em;
}
.block-common-faq .btn-area{
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width:767px) { 
  .block-common-faq .block .question{
    border-radius: 10px;
    padding: 20px 15px;
  }
  .block-common-faq .block .question h3{
    font-size: 1.7rem;
    padding-left: 30px;
    padding-right: 30px;
  }
  .block-common-faq .block .question h3:before{
    font-size: 1.7rem;
  }
  .block-common-faq .block .question h3:after{
    height: 12px;
    width: 12px;
  }
  .block-common-faq .block .answer{
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .block-common-faq .block .answer p{
    font-size: 1.6rem;
    line-height: 1.8em;
  }
}

/* 同階層リンク */

.block-common-diagonally{
  text-align: left;
}
.block-common-same-directory .block:nth-last-of-type(1){
  margin-bottom: 0;
}
.block-common-same-directory ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.block-common-same-directory ul li{
  margin: 0 3% 20px 0;
  width: calc((100% - 6%) / 3);
}
.block-common-same-directory ul li:nth-of-type(3n){
  margin-right: 0;
}
.block-common-same-directory ul li a,
.block-common-same-directory ul li div{
  background: #fff;
  box-sizing: border-box;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.2em;
  padding-right: 50px;
  position: relative;
  text-decoration: none;
  transition: .2s;
  width: 100%;
  display: flex;
  align-items: center;
  border: 2px solid #e4ece4;
}
.block-common-same-directory ul li a:before{
  background: url(/common/img/common/icon-btn-arrow-gr.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 25px;
  width: 25px;
  transform: translateY(-50%);
  position :absolute;
  right: 15px;
  top: 50%;
}
.block-common-same-directory ul li a:hover{
  border: 2px solid #0a5f0a;
}
.block-common-same-directory ul li a picture,
.block-common-same-directory ul li div picture{
  display: block;
  width: 90px;
}
.block-common-same-directory ul li a picture img,
.block-common-same-directory ul li div picture img{
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  display: block;
  width: 100%;
}
.block-common-same-directory ul li a h4,
.block-common-same-directory ul li div h4{
  margin-left: 10px;
  width:calc(100% - 90px - 10px);
}
@media screen and (max-width:767px) { 
  .block-common-same-directory ul li{
    margin-bottom: 20px;
    margin-right: 0;
    width: 100%;
  }
  .block-common-same-directory ul li:nth-last-of-type(1){
    margin-bottom: 0;
  }
}

/* フォーム */

.contact #wrapper{
  padding-top: 0;
}
.contact.thanks #wrapper{
  padding-top: 125px;
}
.header.form{
  position: static;
}
.header.form .header-logo-btn-area{
  height: 125px;
  justify-content: center;
  align-items: center;
}
.contact .block-common.form{
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.contact .block-common.form p{
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.0em;
  margin-bottom: 1.5em;
}
.block-common-contact-telnumber a{
  color: #0a5f0a;
  display: block;
  font-size: 6.6rem;
  font-weight: 700;
  line-height: 1em;
  padding-left: 65px;
  position: relative;
}
.block-common-contact-telnumber a:before{
  background: url(/common/img/common/icon-tel-02.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 71px;
  width: 46px;
  transform: translateY(-50%);
  position :absolute;
  left: 0;
  top: 50%;
}
.block-form-area{
  margin: 50px auto 80px;
}
.block-form-area ul.caution-contact{
  margin-bottom: 70px;
}
.block-form-area .block{
  margin-bottom: 50px;
}
.block-form-area .block .item{
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4em;
  margin-bottom: 20px;
  display: flex;
}
.block-form-area .block .item.checkbox{
  margin-bottom: 20px;
}
.block-form-area .block .item span.required{
  background: #c60019;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1em;
  margin-left: 10px;
  padding: 5px 2em;
  vertical-align: top;
}
.block-form-area .block .contents{
  font-size: 1.7rem;
  line-height: 1.6em;
}
.block-form-area .block .contents.reflect{
  background: #e4ece4;
  box-sizing: border-box;
  font-size: 2.0rem;
  font-weight: 700;
  padding: 30px;
}
.block-form-area .block .contents.reflect span{
  margin-left: 1em;
}
.block-form-area .block .contents span.example{
  display: block;
  color: #999;
  font-size: 1.5rem;
  line-height: 1.4em;
  margin-top: 5px;
}
input.input{
  box-sizing: border-box;
  margin: 0;
  width: 100%;
}
input.input.all{
  box-sizing: border-box;
  margin: 0;
  width: 100%;
}
input.input.post{
  width: 35%;
}
input.input.half{
  width: 50%;
}
input.input.year{
  margin-right: .5em;
  width: 10em;
}
input.input.month{
  margin-left: 1em;
  margin-right: .5em;
  width: 5em;
}
input.input.day{
  margin-left: 1em;
  margin-right: .5em;
  width: 5em;
}
textarea.text{
  box-sizing: border-box;
  height: 10em;
  margin: 0;
  width: 100%;
}
textarea.text.other{
  margin-top: 20px;
}
.block-form-area .block .contents.privacy span.error{
  display: block;
}
.block-form-area .block .contents .link{
  font-size: 1.7rem;
  line-height: 2.0em;
  margin-bottom: 1.5em;
}
footer.form .footer-bottom{
  margin-top: 100px;
  padding-top: 20px;
}

@media screen and (max-width:767px) {
  .contact.thanks #wrapper{
    padding-top: 70px;
  }
  .header.form .header-logo-btn-area{
    height: 70px;
    margin-top: 3px;
  }
  .contact .block-common.form{
    width: 100%;
    max-width: 100%;
  }
  .block-common-contact-telnumber a{
    font-size: 3.8rem;
    padding-left: 50px;
  }
  .block-common-contact-telnumber a:before{
    height: 40px;
    width: 26px;
  }
  .block-form-area{
    margin-bottom: 50px;
  }
  .block-form-area .block{
    margin-bottom: 40px;
  }
  .block-form-area .block .item{
    font-size: 1.6rem;
  }
  .block-form-area .block .contents.reflect{
    padding: 20px;
  }
  .block-form-area .block .contents.reflect span{
    display: block;
    font-size: 1.6rem;
    margin-left: 0;
  }
  input.input.post{
    width: 100%;
  }
  input.input.year{
    margin-bottom: 30px;
  }
  input.input.month{
    margin-bottom: 30px;
    margin-left: 0;
  }
  input.input.day{
    margin-left: 0;
  }
}

input{
  vertical-align: middle;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="radio"],
textarea,
button,
select {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
textarea,
select {
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 1.7rem;
  outline: none;
  padding: 20px 1em;
  transition: .5s;
}
input:focus[type="text"],
input:focus[type="email"],
input:focus[type="number"],
input:focus[type="url"],
textarea:focus {
  background: #edf9ed;
  border: 1px solid #0a5f0a;
}
input[type="radio"]{
  vertical-align: middle;
}
label{
  cursor: pointer;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 15px !important;
  margin-right: 2em;
}
label input[type="radio"]{
  display: inline-block;
  position: relative;
  margin-right: 1.5em;
}
label input[type="radio"]:before{
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  height: 22px;
  margin-top: -13px;
  margin-left: -5px;
  width: 22px;
  position: absolute;
  left: 0;
  top: 50%;
}
label input[type="radio"]:checked:after{
  background: #0a5f0a;
  border-radius: 50%;
  content: "";
  display: block;
  height: 14px;
  width: 14px;
  position: absolute;
  top: -9px;
  left: -1px;
}
label input[type="checkbox"]{
  display: none;
  display: inline-block;
  position: relative;
  margin-right: 1em;
}
label input[type="checkbox"]:before{
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 3px;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  height: 19px;
  margin-top: -10px;
  width: 19px;
  position: absolute;
  left: 0;
  top: 50%;
}
label input[type="checkbox"]:checked:after{
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #0a5f0a;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 9px;
  margin-top: -9px;
  transform: rotate(-45deg);
  width: 18px;
  position: absolute;
  top: 50%;
  left: 3px;
}
@media screen and (max-width:767px) {  
  input[type="text"],
  input[type="email"],
  input[type="url"],
  textarea,
  select {
    padding-left: 10px;
    padding-right: 10px;
  }
  label input[type="radio"]{
    margin-right: 2em;
  }
  label input[type="radio"]:before{
    height: 26px;
    margin-top: -15px;
    width: 26px;
  }
  label input[type="radio"]:checked:after{
    height: 18px;
    width: 18px;
    top: -11px;
  }
}

.btn-area-form{
  text-align: center;
}
.btn-area-form ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.btn-area-form ul li{
  margin-right: 20px;
}
.btn-area-form ul li:nth-last-of-type(1){
  margin-right: 0;
}
.btn-area-form ul li button{
  background: #c80064;
  border-bottom: 1px solid #c80064;
  border-top: 1px solid #c80064;
  box-sizing: border-box;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  line-height: 1em;
  padding: 25px 50px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 400px;
}
.btn-area-form ul li button:hover{
  border-bottom: 1px solid #c80064;
  border-top: 1px solid #c80064;
  color: #c80064;
}
.btn-area-form ul li button:after{
  background: url(/common/img/common/icon-btn-arrow.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 25px;
  width: 25px;
  transform: translateY(-50%);
  transition: .2s;
  position :absolute;
  right: 25px;
  top: 50%;
  z-index: 1;
}
.btn-area-form ul li button:hover:after{
  background: url(/common/img/common/icon-btn-arrow-re.png) no-repeat;
  background-size: contain;
  content: "";
}
.btn-area-form ul li button:before{
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s;
  transition-property: transform;
}
.btn-area-form ul li button:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}
.btn-area-form ul li button span{
  position: relative;
}
@media screen and (max-width:767px) { 
  .btn-area-form ul.submit-only{
    display: block;
  }
  .btn-area-form ul li{
    margin-right: 5%;
  }
  .btn-area-form ul li button{
    width: 90%;
  }
}

.form-thanks{
  font-size: 1.7rem;
  line-height: 2.0em;
  margin: 150px auto;
  text-align: center;
}
@media screen and (max-width:767px) { 
  .form-thanks{
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: left;
  }
}











