@charset "utf-8";

/* Reset CSS （normalize.css v3.0.2） */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
/* 追加 */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}address{font-style:normal}*{margin:0;padding:0}*,:after,:before{background-repeat:no-repeat;box-sizing:border-box}img{vertical-align:bottom;-webkit-backface-visibility:hidden}

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

  Base
  
----------------------------------------------------------------------------------------------------*/
:root {
  --base-width: 1366px;
  --cubic-bezier: cubic-bezier(.23,1,.32,1);
}
@media print, screen and (min-width:1001px) {
  :root {
    --line-height: 1.8;
    --line-height-l: 2.0;
    --line-height-m: 1.6;
    --line-height-s: 1.4;
    --side-space: 40px;
    --block-space-unit: 40px;
    --box-space-unit: 10px;
  }
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
  :root {
    --line-height: 1.6;
    --line-height-l: 2.8;
    --line-height-m: 1.4;
    --line-height-s: 1.2;
    --side-space: 30px;
    --block-space-unit: 30px;
    --box-space-unit: 8px;
  }
}
@media screen and (max-width:640px) {
  :root {
    --line-height: 1.6;
    --line-height-l: 2.8;
    --line-height-m: 1.4;
    --line-height-s: 1.2;
    --side-space: 6%;
    --block-space-unit: max(calc(30 / 640 * 100vw), 15px);
    --box-space-unit: 6px;
  }
}
:root {
  --block-space-max: calc(var(--block-space-unit) * 4);/*160*/
  --block-space-3l: calc(var(--block-space-unit) * 3.5);/*140*/
  --block-space-2l: calc(var(--block-space-unit) * 3);/*120*/
  --block-space-l: calc(var(--block-space-unit) * 2.5);/*100*/
  --block-space-m: calc(var(--block-space-unit) * 2);/*80*/
  --block-space-s: calc(var(--block-space-unit) * 1.75);/*70*/
  --block-space-2s: calc(var(--block-space-unit) * 1.5);/*60*/
  --block-space-3s: calc(var(--block-space-unit) * 1.25);/*50*/
  --block-space-min: calc(var(--block-space-unit) * 1);/*40*/
  
  --box-space-max: calc(var(--box-space-unit) * 5);/*50*/
  --box-space-l: calc(var(--box-space-unit) * 4.5);/*45*/
  --box-space-m: calc(var(--box-space-unit) * 4);/*40*/
  --box-space-s: calc(var(--box-space-unit) * 3.5);/*35*/
  --box-space-2s: calc(var(--box-space-unit) * 3);/*30*/
  --box-space-min: calc(var(--box-space-unit) * 2.5);/*25*/
}
  
html,
body {
  height: 100%;
}
body {
  min-width: 320px;
  background-color: #fff;
  color: #222;
  font-family: 'Zen Maru Gothic','Noto Sans JP','Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-weight: 400;
  line-height: var(--line-height);
  word-wrap: break-word;
  text-align: center;
}
.js_rpsTable,
.js_rpsBlock {
  overflow: hidden;
}
.js_linkBox {
  cursor: pointer;
}
.js_iframe iframe {
  pointer-events: none;
  cursor: pointer;
}
.clear:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.t-nowrap { display: inline-block; }
.lineh-l { line-height: var(--line-height-l); }
.lineh-m { line-height: var(--line-height-m); }
.lineh-s { line-height: var(--line-height-s); }

/*--------------------------------------------------------------------------------
  font
--------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  font-size: 1.8rem;
}
:root {
  --fs-max: 2.6em;
  --fs-5l: 2.3em;
  --fs-4l: 2em;/*36*/
  --fs-3l: 1.7em;/*30*/
  --fs-2l: 1.5em;/*28*/
  --fs-l: 1.3em;/*24*/
  --fs-m: 1.1em;/*20*/
  --fs-s: 0.9em;/*16*/
  /* --fs-2s: 0.8em;
  --fs-3s: 0.7em;
  --fs-min: 0.6em; 
  
  --ff-en: 'Josefin Sans', sans-serif;
  --ff-min: 'Shippori Mincho', serif;; */
}
@media print, screen and (max-width:1200px) {
  :root {
    --fs-max: 2.3em;
    --fs-5l: 2.1em;
    --fs-4l: 1.9em;
    --fs-3l: 1.6em;
  }
}
@media print, screen and (max-width:800px) {
  :root {
    --fs-max: 2.1em;
    --fs-5l: 2em;
    --fs-4l: 1.8em;
    --fs-3l: 1.5em;
    --fs-2l: 1.4em;
    --fs-l: 1.2em;
  }
}
@media print, screen and (max-width:1200px) {
  html {
    font-size: clamp(58%, 0.2em + 0.6vw, 62.5%);
  }
}
@media screen and (max-width:640px) {
  html {
    font-size: clamp(50%, 0.3em + 0.8vw, 58%);
  }
}
.fs-max { font-size: var(--fs-max); }
.fs-5l { font-size: var(--fs-5l); }
.fs-4l { font-size: var(--fs-4l); }
.fs-3l { font-size: var(--fs-3l); }
.fs-2l { font-size: var(--fs-2l); }
.fs-l { font-size: var(--fs-l); }
.fs-m { font-size: var(--fs-m); }
.fs-ms { font-size: var(--fs-ms); }
.fs-s { font-size: var(--fs-s); }
.fs-2s { font-size: var(--fs-2s); }
.fs-3s { font-size: var(--fs-3s); }
.fs-min { font-size: var(--fs-min); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

.fc-blue { color: #305884; }
.fc-dblue { color: #1C3C5E; }
.fc-gold { color: #917D5F; }
.fc-red { color: #C34141; }

/* .ff-en { font-family: var(--ff-en); }
.ff-min { font-family: var(--ff-min); } */

/*-----------------------------------------------------------------------------------
  img
-----------------------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  img.img-hv,
  a.img-hv img {
    transition: opacity 0.3s ease-out;
  }
  img.img-hv:hover,
  a.img-hv:hover img,
  .js_linkBox:hover img.img-hv {
    opacity: 0.6;
  }
}

/*-----------------------------------------------------------------------------------
  link
-----------------------------------------------------------------------------------*/
a {
  outline: none;
}
a,
a:visited,
a:hover {
  color: #F04100;
  text-decoration: underline;
}
@media (hover: hover) {
  a,
  .js_linkBox {
    transition: color 0.15s ease-out, opacity 0.15s ease-out, background 0.3s ease-out, border 0.15s ease-out;
  }
  a:hover,
  .js_linkBox:hover a {
    color: #305884;
    text-decoration: none;
  }
}
@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: inherit;
  }
}
a[href^="tel:"],
a[href^="tel:"]:visited,
a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}



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

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

.pc {
}
.sp {
	display: none;
}

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

.flex{
    display: flex;
}

.between{
    justify-content: space-between;
}

.j-center{
    justify-content: center;
}

.align-center{
    align-items: center;
}

/*----------------
mainvisual
----------------*/

.mainvisual{
    margin-bottom: var(--block-space-3l);
}

.mainvisual .inner{
    height: 768px;
    background-image: url(../image/main-back.jpg);
    background-position: center bottom;
    background-size: cover;
    color: #fff;
}

.mainvisual .inner .box{
    max-width: 579px;
    margin: auto;
}

@media screen and (max-width:640px) {
  .mainvisual .inner .box{
    padding-left: var(--box-space-min); 
    padding-right: var(--box-space-min); 
  }
}

@media screen and (max-width:480px) {
  .mainvisual .inner{
    height: calc(768/480*100vw);
    min-height: 560px;
  }
}

.mainvisual .inner .box img.logo{
    width: 140px;
    margin: 90px 0 20px;
}

@media screen and (max-width:480px) {
  .mainvisual .inner .box img.logo{
      width: 120px;
      margin: 90px 0 20px;
  }
}

.mainvisual .inner .box img.catchphrase{
  margin-bottom: 154px;
}
@media screen and (max-width:480px) {
  .mainvisual .inner .box img.catchphrase{
    margin-bottom: calc(154/750*100vw);
  }
}

.mainvisual .inner .box h1{
    line-height: 1.6;
    font-weight: 500;
}

/*----------------
intro
----------------*/
.intro{
    margin-bottom: var(--block-space-3l);
}

.intro .inner{
    max-width:1366px;
    margin: auto;
}

.intro .txt-box{
    max-width: 683px;
    width: 100%;
    padding: 40px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:960px) {
  .intro .contents.flex.between{
    flex-wrap: wrap;
    justify-content: center;
  }

  .intro .contents.flex.reverse{
    flex-wrap: wrap-reverse;
  }
}

.intro .txt-box h2{
    font-weight: 700;
    padding-bottom:44px;
}

.intro .txt-box p:not(:last-of-type){
    padding-bottom:24px;
}

.intro .txt-box p{
    font-weight: 500;
}

.intro .txt-box br.pc-n{
  display: none;
}

@media screen and (max-width:640px) {
  .intro .txt-box{
    padding-left: var(--block-space-s);
    padding-right: var(--block-space-s);
  }
  
  .intro .txt-box br.pc-n{
    display: block;
  }
}


/*----------------
feature
----------------*/
.feature{
    margin-top: 240px;
    margin-bottom: 120px;
    position: relative;
    background-color: #D8EBBD;
}
@media screen and (max-width:640px) {
  .feature{
      margin-bottom: 80px;
  }
  
}

.feature::before{
    position: absolute;
    top: -79px;
    left: 0;
    background-repeat: repeat-x;
    content: "";
    display: block;
    width: 100%;
    height: 79px;
    background-image:url(../image/townscape.svg) ;
}

.feature .contents{
    padding-top: 100px;
    padding-bottom: 150px;
}

.feature h2{
    position: relative;
    margin-bottom: 10px;
}

.feature h2::before{
    position: absolute;
    content: "";
    display: block;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 47px;
    background-image: url(../image/line-deco.svg);
}

.feature .lead{
    margin-bottom: var(--block-space-min);
}

/*----------------
slider
----------------*/


.slider .txt-box{
  text-align: left;
  /* margin-right: 40px; */
  max-width: 744px;
}

.slider .txt-box p{
  font-size: var(--fs-s)!important;
  line-height: 1.6;
}

.slider .slick-slide {
  margin: 0 60px;
  position: relative;
  max-width: 744px;
}

.slider .slick-slide {
  background-color: #fff;
  padding: 30px 40px 40px;
  opacity: 0.6;
  transition: all 0.6s ease 0.4s;
}

#js-slider.slider .slick-slide {
  padding: 40px 40px 0;
  transition: all 0.6s ease 0.4s;
}


/* .slider .slick-slide {
  max-width: 1168px;
  box-sizing: border-box;
  width: 100%;
  min-height: 476px;
  height: auto;
  transition: all 0.6s ease 0.4s;
  opacity: 0.8;
  box-shadow: 7px 7px 15px -5px #666;
  overflow: hidden;
  background-color: #fff;
  padding: 40px;
  margin: 0 20px;
} */

.slider .slick-slide.slick-current {
  /* max-width: 1168px; */
  box-sizing: border-box;
  opacity: 1;
}

.slider h3{
  line-height: var(--line-height-m);
  padding-bottom: 20px;
} 

.slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  @media screen and (max-width:1366px) {
    /* .slide-item .flex.between{
      flex-wrap: wrap-reverse;
      justify-content: center;
    }

    .slider .slick-slide .slide-item {
      max-width: 668px;
      height: auto;
    }
    .slider .slick-slide.slick-current .slide-item {
      max-width: 668px;
      transform: scale(1.1);
    } */

    .slider .txt-box{
      max-width: 668px;
    }

    .slider img{
      max-width: 668px;
      /* margin-bottom: var(--box-space-2s); */
    }

  }

  .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

    /*----------------
    arrow 
  ----------------*/
    
  .slider .slick-arrow {
    width: 40px;
    height: 80px;
    background-image:url(../image/arrow-green.png);
    background-position: center;
    background-size: contain;
    clip-path: polygon(0 0, 0% 100%, 100% 50%); 
  }

  .slider .slick-arrow::before {
    display: none;
  }

  .slick-next,.slick-prev {
    top: 100%;
    z-index: 1;
  }



  .slider .slick-next {
    right: 20%;
  }
  
  .slider .slick-prev {
    left: 20%;
    transform: scale(-1,1) translateY(-50%);
    z-index:1;
  }


      /*----------------
   slick-dots
  ----------------*/

  .dots .slick-dots {
    text-align: center;
    bottom: 110px;
  }

  .dots .slick-dots li {
    display: inline-block;
    width: 10px;
    height: 10px;
  }

  .dots .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 3px;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #717171;
    border-radius: 50%;
  }

  .dots .slick-dots .slick-active button {
    background: #7FBE26;
  }

  @media screen and (max-width:1366px) {
    .slider .slick-next {
      right: 12%;
    }
  
    .slider .slick-prev {
      left: 12%;
    }

  }

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

    .slider .slick-next {
      right: 2%;
    }
  
    .slider .slick-prev {
      left: 2%;
    }
    .slider .slick-arrow {
      width: 20px;
      height: 40px;
    }
  }
  @media screen and (max-width:800px) {
    /* .slider .slick-slide {
      max-width: 750px;
    } */

    .slider .txt-box{
      width: 80%;
      margin: auto;
    }

    .slider img{
      width: 80%;
      margin: auto;
    }
    .slider .slick-slide {
      margin: 0 30px;
    }
  }

  @media screen and (max-width:640px) {
    /* .slider .slick-slide {
      max-width: 600px;
    } */

    .slick-next,.slick-prev {
      top: 150%;
    }

    .slider .txt-box{
      max-width: 480px;
      width: 60%;
    }

    .slider img{
      max-width: 480px;
      width: 60%;
    }
  }
  /*----------------
  to-form
  ----------------*/

  .to-form{
    position: relative;
    margin-bottom: var(--block-space-3l);
    padding: 80px 0px;
    color: #fff;
  }

  .to-form::before{
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(3px) brightness(80%);
    z-index: -1;
    background-position: center;
    background-image: url(../image/to-form-back.jpg);
    background-size: cover;
  }


  .to-form .inner{
      max-width: 1366px;
      margin: auto;
      padding: 0px 40px;
  }

  @media screen and (max-width:640px) {
    .to-form .inner{
        padding: 0px var(--block-space-3s);
    }
    
  }

  .to-form h2{
    margin-bottom: var(--block-space-min);
    font-weight: 700;
  }

  .to-form p{
    margin-bottom: var(--block-space-min);
    font-weight: 500;
  }
  @media screen and (max-width:750px) {
    .to-form p{
    text-align: left;
    }

    .to-form p{
      margin-bottom: var(--block-space-s);
    }
    
  }

  .form-button {
      background-color: #7FBE26;
      border-radius: 36px;
      max-width: 600px;
      margin:auto;
      font-weight: 700;
  }

  .form-button a {
      border-radius: 36px;
      color: #fff;
      text-decoration:none;
      display: block;
      width: 100%;
      padding: 1rem;
  }

  .form-button a span{
      position: relative;
      padding-right: 27px;
  }

  .form-button a span::after {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      content: "";
      display: block;
      width: 12px;
      height: 24px;
      background-image: url(../image/arrow-white.png);
      background-size: contain;
      /* background-color: #fff;
      clip-path: polygon(0 0, 0% 100%, 100% 50%); */
  }

  .form-button a:hover{
    background-color: #4E9ABB;
  }

  .form-button a:hover span::after {
    right: -5px;
    transition: all 0.2s linear;
  }


  /*----------------
  doctor
  ----------------*/

  .doctor{
    margin-bottom: var(--block-space-m);
  }

  .doctor .contents{
      max-width: 1120px;
      margin: auto;
  }

  .doctor .txt-box{
      box-sizing: border-box;
      padding: 0px 24px 40px 40px;
      max-width: 534px;
      text-align: left;
      margin-right: var(--block-space-min);
  }

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

    .doctor .contents{
      align-items: center;
    }

    .doctor .txt-box{
      padding: 0px 24px 40px 30px;
    }
  }

  .doctor .txt-box h2{
      margin-bottom: 44px;
  }

  .doctor .txt-box p:not(.name){
      margin-bottom:var(--box-space-2s);
  }

  .doctor .txt-box .name{
      font-weight: bold;
      line-height: var(--line-height-s);
  }

  .doctor .img-box{
      max-height: 720px;
  }


  @media screen and (max-width:960px) {
    .doctor .txt-box{
      margin-right: 0px;
    }
  }
  @media screen and (max-width:750px) {
    .doctor .contents.flex{
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .doctor .txt-box{
      max-width: 599px;
    }

    .doctor .img-box{
      width: 100%;
      max-height: 480px;
    }

    .doctor .img-box img{
      max-height: 480px;
    }
  }

  /*----------------
  schedule
  ----------------*/
  .schedule{
    /* margin-bottom: var(--block-space-2l); */
  }

  .schedule .inner{
       background-color: #E2E2E2;
       padding: 80px 0 120px;
  }

  .schedule h2{
    margin-bottom: 30px;
  }

  .schedule .contents {
    max-width: 1000px;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
  }
    @media screen and (max-width:750px) {
    .schedule .contents {
      padding-left: 20px;
      padding-right: 20px;
    }
    }
  
  .schedule-list{
    list-style: none;
  }
  
  .schedule-list li{
    display: flex;
    align-items: center;
  }

  .schedule-list li:not(:last-child) {
    margin-bottom: 20px;
  }
  
  .schedule-list h3{
    position: relative;
    color: #fff;
    background-color: #7FBE26;
    font-size: var(--fs-l);
    border-radius: 8px;
    min-width: 100px;
    margin-right: 80px;
  }

  @media screen and (max-width:750px) {
    .schedule-list h3{
      min-width: 72px;
      margin-right: 60px;
    }
  }
  
  
  .schedule-list h3::before{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -55px;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 6px solid #accf7c;
    box-sizing: border-box;
  }

  .schedule-list li:not(:last-child) h3::after{
    position: absolute;
    top:calc( 100% - 20px);
    right: -41px;
    content: "";
    display: block;
    width: 2px;
    height: 130px;
    background-color: #fff;
    z-index: -1;
  }

  @media screen and (max-width:750px) {
    .schedule-list h3::before{
      right: -45px;
    }
    .schedule-list li:not(:last-child) h3::after{
      right: -31px;
    }
  }
  
  .schedule-list h4{
    color: #7FBE26;
    font-size: var(--fs-m);
  }
  
  .schedule-list .box{
    text-align: left;
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    min-height: 100px;
    box-sizing: border-box;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }

   .schedule-list .box p{
    font-size: var(--fs-s);
   }



  /*----------------
  episode
  ----------------*/

  .episode .box{
      display: flex;
      justify-content: center;
  }

  .episode .txt-box h2{
      position: relative;
      padding-left: 66px;
  }

  .episode .txt-box h2::before{
      position: absolute;
      /* left: -66px; */
      left:0;
      top: 50%;
      transform: translateY(-50%);
      content: "";
      display: block;
      width: 51px;
      height: 58px;
      background-image: url(../image/tree.png);
      background-position: center;
      background-size: contain;
  }

  .episode .txt-box{
      padding: 40px;
  }

  .episode .inner .contents:nth-of-type(odd){
      background-color:#D8EBBD;
  }

  .episode .inner .contents:nth-of-type(odd) .txt-box{
      margin-left: 60px;
  }

  .episode .inner .contents:nth-of-type(even){
      background-color:#fff;
  }

  .episode .inner .contents:nth-of-type(even) .txt-box{
      margin-right: 60px;
  }

  /*----------------
  about-clinic
  ----------------*/

  .about-clinic{
    margin-bottom: var(--block-space-l);
  }

  .about-clinic .inner{
    max-width: 1366px;
    margin:auto;
  }

  .about-clinic .lead h2{
      position: relative;
      padding-bottom: var(--box-space-2s);
  }

  .about-clinic .lead h2::before{
    content: "";
    display: block;
    width: 140px;
    height: 140px;
    background-image: url(../image/nonotxtlogo.svg);
    background-size: cover;
    margin: 0 auto 20px;
  }

  .about-clinic .lead{
    margin-bottom: var(--block-space-3s);
  }

  .ideology h3 {
    margin-bottom:34px;
  }

  .ideology h3 span{
    display: block;
    color:#7FBE26;
  }

  .ideology p:not(:last-of-type){
    margin-bottom:1em;
  }

  .ideology p{
    font-weight: 500;
  }

  .ideology{
    position: relative;
  }

  .ideology .box{
    position: relative;
    z-index: 1;
    top: var(--block-space-min);
    margin-left: var(--block-space-l);
    text-align: left;
    border-radius: 8px;
    padding: 40px;
    max-width: 544px;
    background-color: rgba(193, 255, 242, 0.5);   
  }

  .ideology::after{
    position: absolute;
    right: 0;
    top: 0;
    content:"";
    display: block;
    max-width: 860px;
    padding-top:64% ;
    width: 100%;
    background-image: url(../image/clinic.jpg);
    background-size: contain;
    z-index: 0;
  }

  @media screen and (max-width: 950px) {
    .ideology .box{
      top: 0;
      margin-left: auto;
      margin-right: auto;
      max-width: 860px;
      background-color: rgba(255, 255, 255, 0.5);   
    }
    .ideology::after{
      padding-top:0;
      height: 100%;
      left: 50%;
      transform: translateX(-50%);
      background-size: cover;
    }
  }

  /*----------------
  welfare
  ----------------*/

  .welfare{
    margin-bottom: var(--block-space-3l);
  }

  .welfare h2{
    color: #7FBE26;
    margin-bottom: 10px;
  }

  .welfare .lead{
    margin-bottom: var(--block-space-s);
  }

  .welfare .inner{
      box-sizing: border-box;
      padding: 0 40px;
      max-width: 1166px;
      margin: auto;
  }

  .welfare-list{
      list-style: none;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 40px;
      grid-row-gap: 80px;
      counter-reset: point 0;
  }

  .welfare-list li{
    position: relative;
    background-color: #D8EBBD;
    border-radius: 8px;
    padding: 20px
  }

  .welfare-list li h3{ 
    font-size: var(--fs-l);
    margin-bottom:var(--box-space-min) ;
  }

  .welfare-list li::before{
    position: absolute;
    top: -50px;
    left: 3px;
    counter-increment: point 1;      /* number カウンタを増加 */
    content: "POINT" counter(point, decimal-leading-zero); 
    color: #D8EBBD;
    font-weight: 900;
    font-size: 36px;
    line-height:2.0;
  }

  .welfare-list li img{
    height: 90px;
    margin-bottom:var(--box-space-min) ;
  }

  .welfare-list li p{
    text-align:left;
  }

  @media screen and ( max-width:900px) {
    .welfare-list{
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 60px;
    }
    
  }

  @media screen and ( max-width:750px) {
    .welfare-list{
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 60px;
    }
    
  }


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

  full_support

  ----------------*/
  .full_support{
    margin-bottom: 120px;
  }

  .full_support h2{
    margin-bottom: 20px;
    color: #7FBE26;
  }

  .full_support .lead p{
    text-align: left;
  }

  .full_support .lead{
    margin-bottom: 30px;
  }

  .full_support .inner{
    box-sizing: border-box;
    padding: 40px 40px;
    max-width: 860px;
    margin: auto;
    /* background-color: #D8EBBD; */
    border: 8px solid #D8EBBD;
    box-sizing: border-box;
  }

  @media screen and (max-width: 640px) {
    .full_support .inner{
      padding: 40px 20px;
    }
  }

  .support-list{
    list-style: none;
    text-align: left;
  }
  
  .support-list li{
    font-weight: bold;
    padding-left: 1.5em;
    text-indent: -1.5em;
  }

  .support-list li:not(:last-child){
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #ededed;
  }

  .support-list li span{
    font-size: var(--fs-m);
    color: #7FBE26;
    margin-right: 0.5em;
  }


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

  gingival_hygiene

  ----------------*/
  .gingival_hygiene{
    margin-bottom: 120px;
  }

.gingival_hygiene  h2{
    position: relative;
    color: #7FBE26;
    margin-bottom: 50px;
}

  .gingival_hygiene  h2::before{
    position: absolute;
    content: "";
    display: block;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 47px;
    background-image: url(../image/line-deco-green.svg);
}

  .gingival_hygiene .inner .contents:not(:last-of-type){
    margin-bottom: 90px;  
  }

  .gingival_hygiene .inner .contents:nth-of-type(even){
    /* background-color: #E0FFF8; */
    background-color: #ededed;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .gingival_hygiene .contents{
    max-width: 1000px;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and ( max-width:900px) {
    .gingival_hygiene .contents{
      padding-left: 10px;
      padding-right: 10px;
    }
  }

  .gingival_hygiene .contents .txt-box h3{
    position: relative;
    font-size: var(--fs-l);
    text-align: left;
    margin-bottom: 40px;
    padding-left: 60px;
  }

  .gingival_hygiene .contents .txt-box h3::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    background-position: center;
    background-size: contain;
    background-image: url(../image/megaphone.png);
  }
  
  @media screen and ( max-width:900px) {
    .gingival_hygiene .contents .txt-box h3::before{
      height: 30px;
    }
  }


  .gingival_hygiene .contents p {
    position: relative;
  }

  .gingival_hygiene .contents p::before{
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(30deg);
    content: "";
    display: block;
    width: 45px;
    height: 30px;
    background-position: center;
    background-size: contain;
    background-image: url(../image/leaf.png);
  }

  @media screen and ( max-width:900px) {
    .gingival_hygiene .contents p::before{
      top:-5px;
      width: 30px;
    }
  }
  
  .gingival_hygiene .contents p span.answer{
    display: block;
    text-align: left;
    font-size: var(--fs-m);
    margin-bottom: 5px;
    width: 85%;
    padding-left: 60px;
  }
  
  @media screen and ( max-width:900px) {
    .gingival_hygiene .contents p span.answer{
      padding-left: 45px;
      width: 90%;
    }
  }

  .gingival_hygiene .contents .txt-box p:not(:last-of-type){
    margin-bottom: 20px;
  }

  .gingival_hygiene .contents p span.w_said{
    position: relative;
    display: block;
    text-align: right;
    /* font-size: var(--fs-s); */
    font-weight: bold;
    background-color: #fff;
    color: #7FBE26;
  }
  .gingival_hygiene .contents p span.w_said::after{
    position: absolute;
    content: "";
    width: 85%;
    height: 1px;
    border-bottom: 2px dashed #ededed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
  }

  @media screen and ( max-width:900px) {
    .gingival_hygiene .contents p span.w_said::after{
      width: 75%;
    }
  }

  .gingival_hygiene .inner .contents:nth-of-type(even) p span.w_said{
    /* background-color: #E0FFF8; */
    background-color: #ededed;
  }

  .gingival_hygiene .inner .contents:nth-of-type(even) p span.w_said::after{
   border-bottom: 2px dashed #fff;
  }

  

  



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

  recruitment-flow

  ----------------*/
  .recruitment-flow {
      background-color: #E0FFF8;
      padding: var(--block-space-l) 0px;
  }

  .recruitment-flow h2{
    color: #7FBE26;
    margin-bottom: 10px;
  }

  .recruitment-flow .lead{
    margin-bottom: var(--block-space-m);
  }

  .recruitment-flow .inner{
      box-sizing: border-box;
      padding: 0 40px;
      max-width: 1166px;
      margin: auto;
  }

  .recruitment-flow ol{
      list-style: none;
      display: grid;
      grid-template-columns: repeat(4,1fr);
      grid-column-gap:40px;
      grid-row-gap: 80px;
      counter-reset: flow 0;
  }

  @media screen and ( max-width:900px) {
    .recruitment-flow ol{
      grid-template-columns: repeat(2,1fr);
    }
  }

  @media screen and ( max-width:640px) {
    .recruitment-flow ol{
      grid-template-columns: repeat(1,1fr);
    }
  }

  .recruitment-flow ol li{
      position: relative;
      background-color: #fff;
      border-radius: 8px;
      padding: 10px 20px 20px;
  }

  .recruitment-flow ol li h3{
    font-size: var(--fs-l);
    color: #7FBE26;
    margin-bottom: 10px;
  }

  .recruitment-flow ol li::before{
      position: absolute;
      left: 50%;
      top:-40px;
      transform: translateX(-50%);
      content: "";
      width: 58px;
      height: 56px;
      counter-increment: flow 1; 
      content: counter(flow, decimal); 
      background-image: url(../image/flownumback.png);
      background-position: center;
      background-size: contain;
      font-weight: 700;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  @media screen and ( min-width:901px) {
    .recruitment-flow ol li:not(:nth-child(4n))::after{
      position: absolute;
      top:50%;
      right: -40px;
      transform: translateY(-50%);
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background-color: #7FBE26;
    }
  }

  @media screen and ( min-width:641px) and ( max-width:900px) {
      .recruitment-flow ol li:nth-child(odd)::after{
        position: absolute;
        top:50%;
        right: -40px;
        transform: translateY(-50%);
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background-color: #7FBE26;
    }
  }

  @media screen and ( max-width:640px) {
    .recruitment-flow ol li:not(:last-child)::after{
      position: absolute;
      left:50%;
      bottom: -40px;
      transform: translateX(-50%);
      content: "";
      display: block;
      width: 2px;
      height: 40px;
      background-color: #7FBE26;
    }
  }

  .recruitment-flow ol li p{
      text-align: left;
  }

  .recruitment-flow ol li img{
      width: 140px;
      height: 140px;
  }


  /*----------------
  guideline
  ----------------*/

  .guideline {
      background-color: #D8EBBD;
      padding:var(--block-space-2l) ;
  }

  @media screen and ( max-width:1000px) {
    .guideline {
        padding:var(--block-space-2l) var(--block-space-s);
    }
  }

  @media screen and ( max-width:900px) {
    .guideline {
        padding:var(--block-space-2l) 0;
    }  
  }

  @media screen and ( max-width:750px) {
    .guideline {
        padding:var(--block-space-2l) 0;
    }  
  }

  .guideline h2{
    font-weight: 700;
      color: #7FBE26;
      margin-bottom: var(--box-space-2s);
  }

  .guideline-table{
      text-align: left;
      background-color: #fff;
      padding: 50px;
      box-sizing: border-box;
      max-width: 900px;
      margin:auto;
      display:flex;
      flex-wrap: wrap;
  }

  .guideline-table dt{
    font-weight: 500;
    max-width: 220px;
    padding: 20px 30px;
    width: 100%;
    border-top: 1px solid #707070;
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
  }

  .guideline-table dd{
    width: calc(100% - 220px);
    padding: 20px 30px;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
  }

  .guideline-table dt:last-of-type{
    border-bottom: 1px solid #707070;
  }

  .guideline-table dd:last-of-type{
    border-bottom: 1px solid #707070;
  }

  .caution{
    display: inline-block;
    text-indent: -1.1em;
    padding-left: 1.1em;
  }

  .caution::before {
    content: "\0274b";/*\025ce※ */
    margin-right: 0.1em;
  }


  .cir-list li{
    list-style: none;
    text-indent: -1.1em;
    padding-left: 1.1em;
  }

  .cir-list li::before {
    content: "\025cf";
    margin-right: 0.1em;
  }

  @media screen and ( max-width:750px) {
    .guideline-table{
      padding: 20px;
      flex-wrap: wrap;
    }

    .guideline-table dt{
      font-size: var(--fs-m);
      text-align: center;
      max-width: 750px;
      padding: 20px 30px 10px;
      width: 100%;
      border-top: 1px solid #707070;
      border-left: 1px solid #707070;
      border-right: 1px solid #707070;
    }
    
    .guideline-table dd{
      max-width: 750px;
      width: 100%;
      padding: 0px 30px 20px;
      border-top: 0;
      border-left: 1px solid #707070;
      border-right: 1px solid #707070;
    }

    .guideline-table dt:last-of-type{
      border-bottom: 0;
    }
    
  }
  /*----------------
  footer
  ----------------*/
  footer{
    padding-top: 60px;
  }

  footer .site-name{
    padding-bottom: 30px;
    font-weight: 700;
  }
  
  footer a{
    max-width: 399px;
    margin: 0 auto 70px;
    display: block;

  }
  footer .copy{
    background-color: #E2E2E2;
    font-size: var(--fs-s);
    padding: 10px ;
  }

  /* -----------------------------------------------------------------------------
	form
 -------------------------------------------------------------------------------*/
 .recruitment-form{
  background-color: #E2E2E2;
  padding-top: 80px;
  padding-bottom: 120px;
 }

 .recruitment-form .inner{
  padding: 50px 60px;
  background-color: #fff;
  max-width: 900px;
  margin: auto;
 }
 .recruitment-form .inner h2{ 
  color: #7FBE26;
  margin-bottom: 30px;
 }

 .recruitment-form .inner .lead{ 
  margin-bottom: 50px;
 }

 .recruitment-form .inner .lead p{ 
  text-align: left; 
  max-width: 600px;
  margin: auto;
}
  /* -----------------------------------------------------------------------------
	form
 -------------------------------------------------------------------------------*/
 #mail_form{
  text-align: left;
  max-width: 600px;
  margin:auto;
 }

#mailform-layout {
  margin-bottom:40px;
}

.agree-box p{
  margin-bottom:40px;
  
}

.agree-box{
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
}

#mailform-layout .item {
	position: relative;
}

#mailform-layout .item .name {
	/* position: absolute;
	top: 0;
	left: 0; */
	/* width: 180px; */
  margin-bottom: 5px;
  font-weight: 500;
}

#mailform-layout .item .answer {
	/* padding-left: 200px; */
	box-sizing: border-box;
}

@media screen and (max-width: 750px) {
	#mailform-layout .item .answer {
    padding-left: 0;
		padding-top: 10px;
	}
	#mailform-layout .item .name {
    /* width: 320px; */
    margin-bottom: 0px;
	}
}

#mailform-layout .required {
	/*background-color: #ff4545;
	display: block;
	position: absolute;
	top: 0;
	right: 0; */
	color: #ff4545;
	text-align: center;
	width: 50px;
	/* padding-top: 3px;
	padding-bottom: 3px; */
	font-size: 13px;
	border-radius: 3px;
}

@media screen and (max-width: 750px) {
	#mailform-layout .required {
		/* display: inline-block;
		position: relative;
		right: inherit;
		margin-left: 20px;
		top: -6px; */
	}
}

#mailform-layout ul {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.mailform-alart {
	background-color: #e3fff2;
	border: 1px solid #bae4d1;
	box-sizing: border-box;
	border-radius: 5px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	padding-bottom: 15px !important;
	margin-bottom: 30px;
	text-align: center;
}

.mailform-alart.error {
	background-color: #ffffff;
	border: 2px solid #ff5353;
	color: #ff5353;
	font-weight: bold;
}

.mailform-setup-alart {
	background-color: #ffffff;
	border: 1px solid #ff5353;
	box-sizing: border-box;
	border-radius: 5px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	padding-bottom: 15px !important;
	margin-bottom: 30px;
	text-align: center;
	color: #ff5353;
}

.mailform-setup-alart strong {
	display: block;
	text-align: center;
	margin-bottom: 10px;
	font-size: 20px;
}

.mailform-setup-alart p {
	margin: 0;
	padding: 0;
}

.mailform-box {
	background-color: #f2f2f2;
	padding: 30px !important;
	margin-bottom: 30px !important;
	box-sizing: border-box;
	border-radius: 5px;
	margin-top: 50px;
  text-align: left;
}

.mailform-box .title {
	font-size: 24px;
	display: block;
	padding-bottom: 10px;
	color: #ff6b6b;
	background-image: url("../contact/image/icon-mailplus.png");
	background-repeat: no-repeat;
	background-position: left 2px top 0;
	padding-left: 60px;
}

.mailform-box p {
	margin: 0 !important;
	padding: 0 !important;
}

.sentok {
	font-size: 32px;
	text-align: center;
	color: #ff6b6b;
}

.add {
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 3px;
	width: 200px;
	height: 36px;
	margin-top: 5px;
}

.s_name {
	display: block;
	margin-bottom: 10px;
}

.button-limit {
	display: none !important;
}

/* input - text */

input[type=text] {
	border: 1px solid #cccccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 3px;
  width: 250px;
}

/* input - tel */

input[type=tel] {
	border: 1px solid #cccccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 3px;
	width: 250px;
}

/* input - email */

input[type=email] {
	border: 1px solid #cccccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 3px;
	width: 100%;
}

/* input - radio */

input[type=radio] {
	position: absolute;
  opacity: 0;
  z-index: -1; 
}
input[type=radio]+label {
	display:block;
	cursor:pointer;
	margin-top:0.25em;
	margin-bottom:0.25em;
	font-family:inherit;
}

input[type=radio]+label:before {
	width:1.25em;
	height:1.25em;
	display:inline-block;
	content:"";
	border-radius:1.25em;
	vertical-align:middle;
	border:2px solid #c8c8c8;
	background-color:#fff;
	margin:-2px 5px 0 0;
	-webkit-transition:border-color ease-in-out .15s, background-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition:border-color ease-in-out .15s, background-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	transition:border-color ease-in-out .15s, background-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

input[type=radio]:hover+label:before {
	border-color:#c8c8c8;
	background-color:#c8c8c8;
	box-shadow:inset 0 0 0 0.25em #fff;
}

input[type=radio]:checked+label:before {
	border-color:#4593ea;
	background-color:#4593ea;
	box-shadow:inset 0 0 0 0.25em #fff;
}

.radio-group label {
	margin-right:1.5em;
}

/* .radio-group li {
	float: left;
} */

.radio-group{
  display: flex;
}

/* input - checkbox */

.chk-group {
	position: relative;
	bottom: -5px !important;
	display: block;
}

.chk-group li {
	display: inline-block;
	padding-right: 20px;
}

.chk-group li label {
  display: block;
  position: relative;
  padding-left: 30px;
  padding-bottom: 5px;
  cursor: pointer;
  font-size: 18px;
}
.chk-group li label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 2px;
}
.chk-group li label:hover input ~ .indicator,
.chk-group li label input:focus ~ .indicator {
  background: #ccc;
}
.chk-group li label input:checked ~ .indicator {
  background: #4593ea;
}
.chk-group li label:hover input:not([disabled]):checked ~ .indicator,
.chk-group li label input:checked:focus ~ .indicator {
  background: #4593ea;
}
.chk-group li label input:disabled ~ .indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.chk-group li label input:checked ~ .indicator:after {
  display: block;
}
.chk-group li .checkbox .indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.chk-group li .checkbox input:disabled ~ .indicator:after {
  border-color: #7b7b7b;
}

/* item - age */

#mailform-layout ul.age {
}

#mailform-layout ul.age li {
	float: left;
	width: 100px;
	margin-right: 5px;
}
#mailform-layout ul.age li input {
	width: 70px;
	border: 1px solid #cccccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 3px;
	margin-right: 5px;
}

#mailform-layout ul.age li:nth-of-type(1) {
	width: 120px
}

#mailform-layout ul.age li:nth-of-type(1) input {
	width: 90px;
}

/* item - postcode */

#mailform-layout .postcode {
	display: block;
	padding-bottom: 10px;
}

#mailform-layout .postcode input {
	border: 1px solid #cccccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 3px;
	margin-right: 5px;
}

#mailform-layout .postcode input:nth-of-type(1) {
	width: 60px;
}
#mailform-layout .postcode input:nth-of-type(2) {
	width: 80px;
}

#mailform-layout .postcode+input {
	width: 100%;
}

/* textarea */

#mailform-layout textarea {
	width: 100%;
	border: 1px solid #cccccc;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 3px;
}

/* submit-button */

.submit-button {
  /* background-color: #7FBE26; */
  border-radius: 36px;
  max-width: 600px;
  margin:auto;
  font-weight: 700;
}

.submit-button #submit-btn {
  border-radius: 36px;
  color: #fff;
  text-decoration:none;
  display: block;
  width: 100%;
  padding: 1rem;
  border: 0;
  background-color: #7FBE26;
}

.submit-button #submit-btn span{
  position: relative;
  padding-right: 27px;
}

.submit-button #submit-btn span::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 12px;
  height: 24px;
  background-image: url(../image/arrow-white.png);
  background-size: contain;
  /* background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%); */
}

.submit-button #submit-btn:hover{
background-color: #4E9ABB;
}

.submit-button #submit-btn:hover span::after {
right: -5px;
transition: all 0.2s linear;
}

.submit-button #submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}

.submit-button #pageback {
  border-radius: 36px;
  color: #fff;
  text-decoration:none;
  display: block;
  width: 100%;
  padding: 1rem;
  border: 0;
  background-color:#666666;
  margin-top: 1em;
}

.submit-button #pageback:hover{
background-color: #999999;
}



/* .submit-button {
	text-align: center;
	padding-top: 20px;
}

.submit-button button {
	display: inline-block;
	margin-left: 14px;
	margin-right: 14px;
	background-color: #ffffff;
	color: #4593ea;
	border: 1px solid #4593ea;
	border-radius: 5px;
	padding: 15px;
	padding-left: 50px;
	padding-right: 50px;
	text-indent: -15px;
	position: relative;
	transition: 0.2s;
}

.submit-button button.pageback {
	text-indent: 15px !important;
	padding-right: 35px !important;
}

.submit-button button:hover {
	background-color: #4593ea;
	color: #ffffff;
	border: 1px solid #4593ea;
}

.submit-button button:before {
	width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ffffff;
	content: "";
	position: absolute;
	transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
	right: 2px;
	top: 50%;
	transition: 0.2s;
}

.submit-button button:hover:before {
    background: #ffffff;
	right: 2px;
}

.submit-button button.pageback:before {
	right: inherit;
	left: 20px;
}
.submit-button button.pageback:hover:before {
    background: #ffffff;
		left: 20px;
}

.submit-button button:after {
    width: 5px;
    height: 5px;
    border-top: 1px solid #4593ea;
    border-right: 1px solid #4593ea;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
		content: "";
		position: absolute;
		right: 21px;
		top: calc(50% + 1px);
		transition: 0.2s;
}
.submit-button button:hover:after {
	right: 17px;
}

.submit-button button.pageback:after {
	right: inherit;
	left: 21px;
	-webkit-transform: rotate(225deg);
    transform: rotate(225deg);
	top: 20px;
}
.submit-button button.pageback:hover:after {
	right: inherit;
	left: 17px;
} */

/* Design Template
 simple - 下線のみのシンプルなレイアウト
 table - テーブルタグで作成したようなレイアウト
 portable - タブレットスタイルでポップなレイアウト
*/

/* design - simple */
#mailform-layout.simple .item {
	padding-bottom: 15px;
	margin-bottom: 15px;
	/* border-bottom: 1px dotted #cccccc; */
}


/* design - table */

#mailform-layout.table .item {
	position: relative;
	border: 1px solid #e0e0e0;
	margin-top: -1px;
}

#mailform-layout.table .item .name {
	position: absolute;
	left: 0;
	width: 180px;
	height: 100%;
	background-color: #f5f5f5;
	box-sizing: border-box;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
}

#mailform-layout.table .item .answer {
	padding: 15px;
	padding-left: 200px;
	box-sizing: border-box;
}

@media screen and (max-width: 750px) {
	#mailform-layout.table .item .name {
		width: 100%;
		display: block;
		position: relative;
		top: inherit;
		left: inherit;
	}
	#mailform-layout.table .item .answer {
		padding-left: 15px;
	}
}

#mailform-layout.table .required {
	position: relative;
	top: inherit;
	right: inherit;
	margin-bottom: 5px;
}

@media screen and (max-width: 750px) {
	#mailform-layout.table .required {
		display: inline-block;
	}
}


/* design - portable */

#mailform-layout.portable .item {
	position: relative;
	margin-bottom: 10px;
}

#mailform-layout.portable .item .name {
	position: absolute;
	left: 0;
	width: 250px;
	height: 100%;
	background-color: #d2e7ff;
	border-radius: 5px;
	color: #333333;
	font-weight: bold;
	box-sizing: border-box;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
}

#mailform-layout.portable .item .answer {
	padding: 15px;
	width: calc(100% - 260px);
	margin-left: 260px;
	box-sizing: border-box;
	border: 1px solid #eeeeee;
	border-radius: 5px;
	background-color: #ffffff;
}

#mailform-layout.portable .required {
	top: 50%;
    right: 10px;
    transform: translateY(-50%);
	background-color: #ffffff;
	box-sizing: border-box;
	color: #ff4545;
	border: 1px solid #ff4545;
}