@charset "UTF-8";

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight:500;
  font-size: 18px;
  font-size: 1.8rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-feature-settings: "palt";
}
  @media screen and (max-width: 767px) {
    body {
      font-size: 2.4vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #fb830d;
}
a:visited {
  color: #fb830d;
}
a:hover {
  text-decoration: none;
  color: #fb830d;
}
a:active {
  color: #fb830d;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  min-width: 1060px;
  overflow:hidden;
  margin: 0 auto;
}
#contents {
  line-height: 1.5;
}
#contents a:hover img{
  filter: brightness(1.1);
}
.wrapper {
  position: relative;
  z-index: 5;
  width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  z-index: 5;
  width: 810px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 767px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #page {
      padding-top: 10.66vw;
    }
    .wrapper, .inner {
      width:100%;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
  height: 80px;
}
.hd_inner {
  max-width: 1792px;
  margin: 0 auto;
}
#header .logo {
  position: relative;
  margin-top: 22px;
  display:inline-block;
}
  @media screen and (max-width: 767px) {
    #header {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 100;
      padding: 0 4vw;
      height: 10.66vw;
      background: rgba(255,255,255,0.95);
    }
    #header .logo {
      margin-top: 3vw;
    }
    #header .logo img {
      width: 68vw;
      height: auto;
    }
  }

.side_nav {
  position: fixed;
  top: 110px;
  right: -66px;
  z-index: 110;
}
.side_nav li {
  position: relative;
  left: 0;
  margin-bottom: 15px;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
}
.side_nav li:hover {
  left: -10px;
}
  @media screen and (max-width: 767px) {
    .side_nav {
      top: 0;
      right: 4vw;
    }
    .side_nav li {
      display: none;
      margin-bottom: 1.66vw;
    }
    .side_nav li:hover {
      left: 0;
    }
    .side_nav li img {
      display: none;
    }
    .side_nav li#menuTrigger {
      display: block;
      background: url("../img/hb_menu.svg") center center no-repeat;
      background-size: 6.66vw auto;
      width: 6.66vw;
      height: 10.33vw;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  padding: 50px 0 80px;
  background: #fff;
}
.copyright {
  font-size: 1.2rem;
}
  @media screen and (max-width: 767px) {
    #footer {
      padding: 6.66vw 0;
    }
    .copyright {
      display: block;
      line-height: 1.5;
      font-size: 2.33vw;
    }
  }

/*----------------------------------------------------
	汎用スタイル
----------------------------------------------------*/
.inline {
  display:inline;
}
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.block {
  display:block;
}
.flex {
  display: flex;
}
/* 横逆順 */
.fx_r_reverse {
  flex-direction: row-reverse;
}
/* 縦逆順 */
.fx_c_reverse {
  flex-direction: column-reverse;
}
/*アイテム折返し*/
.fx_wrap {
  flex-wrap: wrap;
}
/* 等間隔に配置 */
.fx_between {
  justify-content: space-between;
}
/* センターに配置 */
.fx_center {
  justify-content: center;
}
/* 右側に配置 */
.fx_end {
  justify-content: flex-end;
}
/*上下中央寄せ*/
.fx_all_center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.table_cell {
  display: table-cell;
  vertical-align: middle;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.tC {
  text-align: center;
}
.tR {
  text-align: right;
}
.pc_none {
  display:none;
}
@media screen and (max-width: 767px) {
  .pc_none {
    display:block;
  }
  .sp_none {
    display:none;
  }
  .fl,.fr {
    box-sizing:border-box;
    width:100%!important;
    float:none!important;
  }
  .sp_block {
    -webkit-display: block;
    -moz-display: block;
    -ms-display: block;
    -o-display: block;
    display: block;
  }
}

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */

#hbMenu {
  opacity: 0;
  position: fixed;
  top: 30px;
  right: -680px;
  z-index: -5;
  width: 680px;
  height: calc(100% - 70px);
  margin: 0;
  padding: 90px 0 40px 0;
  background-color: rgba(255,255,255,0.96);
  overflow-y: visible;
  overflow-x: hidden;
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: all 0.6s ease 0s;
}
#hbMenu.hb_open {
  opacity: 1;
  right: 0;
  z-index: 150;
}
.hb_inner {
  box-sizing: border-box;
  display: table;
  width: 100%;
  height: 100%;
}
.hb_inner a {
  display: block;
  color: #000;
  font-size: 2.6rem;
  font-weight: 600;
  text-decoration: none;
}
.hb_menu01 {
  width: 460px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.hb_menu01 li {
  margin-bottom: 55px;
  text-align: center;
}
.hb_menu01 li a:hover {
  color: #FB830D;
}
.hb_menu02 {
  width: 460px;
  margin: 0 auto;
}
.hb_menu02 li a {
  color: #fff;
  background: #34B7F1;
  text-align: center;
  margin-bottom: 30px;
  padding: 26px 10px;
}
.hb_menu02 li:nth-child(2) a {
  background: #FB830D;
}
.hb_menu02 li a:hover {
  filter: brightness(1.1);
}
.hb_close {
  position: fixed;
  right: 40px;
  top: 60px;
  cursor: pointer;
}
  @media screen and (max-width: 767px) {
    #hbMenu {
      right: 0;
      width: 100%;
      top: 0;
      height: 100%;
      padding: 15.33vw 6vw 3vw;
      transition: all 0.4s ease 0s;
    }
    .hb_inner a {
      font-size: 3.64vw;
    }
    .hb_menu01 {
      width: 100%;
      padding-bottom: 2vw;
    }
    .hb_menu01 li {
      margin-bottom: 6vw;
    }
    .hb_menu02 {
      width: 100%;
    }
    .hb_menu02 li a {
      margin-bottom: 3.73vw;
      padding: 3.33vw 2.66vw;
    }
    .hb_close {
      right: 4.2vw;
      top: 2.13vw;
    }
    .hb_close img {
      width: 6vw;
      height: auto;
    }
  }

/*----------------------------------------------------
  トップページ index
--------------------------------------------------- */
#mainVisual {
  position: relative;
  width: 100%;
  height: 646px;
}
#mainVisual figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
}
#mainVisual figure img {
  min-width: 1792px;
  width: 1792px;
  object-fit: cover;
}
.mv_ttl {
  position: absolute;
  left: calc(50% - 620px);
  top: 45px;
  z-index: 5;
}
  @media screen and (max-width: 1800px) {
    #mainVisual figure {
      left: calc(50% - 896px);
    }
  }
  @media screen and (max-width: 1249px) {
    #mainVisual {
      height: 504px;
    }
    #mainVisual figure {
      left: calc(50% - 700px);
    }
    #mainVisual figure img {
      min-width: 1400px;
      width: 1400px;
    }
    .mv_ttl {
      left: calc(50% - 490px);
      top: 40px;
    }
    .mv_ttl img {
      width: 600px;
      height: auto;
    }
  }
  @media screen and (max-width: 767px) {
    #mainVisual {
      height: 78.66vw;
    }
    #mainVisual figure {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      text-align: center;
    }
    #mainVisual figure img {
      min-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .mv_ttl {
      position: absolute;
      left: 0;
      top: 5.33vw;
      width: 100%;
      text-align: center;
    }
    .mv_ttl img {
      width: 93.33vw;
      height: auto;
    }
  }

/*楽しく働けちゃう秘密をご紹介*/
#index_navi {
  padding: 50px 0 80px;
}
#index_navi h2 {
  margin-bottom: 25px;
}
#index_navi ul {
  text-align: center;
  max-width: 512px;
  margin: 0 auto;
}
#index_navi li {
  border-bottom: dashed 2px #fb830d;
}
#index_navi li a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 2.4rem;
  padding: 8px 0;
  font-weight: 600;
}
#index_navi li a:hover {
  color: #fb830d;
}
.index_navi_fig01 {
  position: absolute;
  left: 30px;
  bottom: 0;
}
.index_navi_fig02 {
  position: absolute;
  right: 35px;
  bottom: 5px;
}
  @media screen and (max-width: 767px) {
    #index_navi {
      padding: 4vw 10vw 9.33vw;
    }
    #index_navi h2 {
      margin-bottom: 2vw;
    }
    #index_navi ul {
      max-width: 100%;
    }
    #index_navi li {
      border-bottom: dotted 2px #fb830d;
    }
    #index_navi li a {
      font-size: 3.73vw;
      padding: 1.33vw 0;
    }
    .index_navi_fig01 {
      left: -13vw;
      bottom: -4vw;
    }
    .index_navi_fig01 img {
      width: 24.2vw;
      height: auto;
    }
    .index_navi_fig02 {
      right: -17vw;
      bottom: -4vw;
    }
    .index_navi_fig02 img {
      width: 23.73vw;
      height: auto;
    }
  }

/*こんなお悩みありませんか？*/
#worries_lead {
  background: #FBA630;
  text-align: center;
  padding: 60px 0 30px;
}
.worries_block {
  padding-top: 36px;
}
.worries_box {
  position: relative;
}
.worries_txt {
  font-size: 2rem;
  font-weight: 600;
}
.worries_txt h3 {
  margin-bottom: 15px;
}
.worries_txt p {
  width: 100%;
  max-width: 648px;
  line-height: 1.4;
}
.worries_block:nth-child(even) .worries_txt{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.worries_img {
  position: absolute;
  bottom: 0;
}
.worries_img img {
  position: relative;
  max-width: inherit;
}
  @media screen and (max-width: 767px) {
    #worries_lead {
      padding: 7.33vw 0 4.66vw;
    }
    .worries_ttl img {
      width: 66.93vw;
      height: auto;
    }
    .worries_block {
      padding-top: 4vw;
    }
    .worries_box {
      padding: 0 4vw;
    }
    .worries_txt {
      font-weight: 600;
    }
    .worries_txt h3 {
      margin-bottom: 1.33vw;
    }
    .worries_txt h3 img {
      width: 86.4vw;
      height: auto;
    }
    .worries_txt p {
      font-size: 2.66vw;
      max-width: 86.4vw;
    }
  }

#worries01 {
  background: url("../img/worries01_bg.jpg") center center no-repeat;
  background-size: cover;
}
#worries02 {
  background: url("../img/worries02_bg.jpg") center center no-repeat;
  background-size: cover;
}
#worries03 {
  background: url("../img/worries03_bg.jpg") center center no-repeat;
  background-size: cover;
}
#worries04 {
  background: url("../img/worries04_bg.jpg") center center no-repeat;
  background-size: cover;
}

#worries01 .worries_box {
  padding-bottom: 200px;
}
#worries02 .worries_box {
  padding-bottom: 186px;
}
#worries03 .worries_box {
  padding-bottom: 182px;
}
#worries04 .worries_box {
  padding-bottom: 240px;
}
#worries01 .worries_img {
  right: 48px;
}
#worries02 .worries_img {
  left: -10px;
}
#worries03 .worries_img {
  right: 55px;
}
#worries04 .worries_img {
  left: -235px;
}
  @media screen and (max-width: 767px) {
    #worries01 .worries_box {
      padding-bottom: 26vw;
    }
    #worries02 .worries_box {
      padding-bottom: 25vw;
    }
    #worries03 .worries_box {
      padding-bottom: 25.2vw;
    }
    #worries04 .worries_box {
      padding-bottom: 29vw;
    }
    #worries01 .worries_img {
      right: 3vw;
    }
    #worries02 .worries_img {
      left: -4vw;
    }
    #worries03 .worries_img {
      right: 3vw;
    }
    #worries04 .worries_img {
      left: -8vw;
    }
    #worries01 .worries_img img {
      width: 76.86vw;
      height: auto;
    }
    #worries02 .worries_img img {
      width: 84.4vw;
      height: auto;
    }
    #worries03 .worries_img img {
      width: 76.86vw;
      height: auto;
    }
    #worries04 .worries_img img {
      width: 105vw;
      height: auto;
    }
  }

#worries_solution {
  position: relative;
  padding: 70px 0 20px;
}
.worries_solution_ttl {
  margin-bottom: 20px;
}
.worries_solution_txt {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  background: rgba(255,255,255,0.75);
  padding: 30px 15px;
}
.worries_solution_txt p {
  margin-bottom: 30px;
  line-height: 1.6;
}
.worries_solution_txt p span {
  display: inline-block;
  text-decoration: underline;
}
.worries_solution_fig01 {
  position: absolute;
  left: 0;
  bottom: 50px;
}
.worries_solution_fig02 {
  position: absolute;
  right: 0;
  bottom: 50px;
}
  @media screen and (max-width: 767px) {
    #worries_solution {
      padding: 7.73vw 0 6vw;
    }
    .worries_solution_ttl {
      margin-bottom: 0;
    }
    .worries_solution_ttl img {
      width: 45.33vw;
      height: auto;
    }
    .worries_solution_txt {
      max-width: 100%;
      padding: 6.66vw 0;
      background: none;
    }
    .worries_solution_txt p {
      margin-bottom: 4vw;
    }
    .worries_solution_fig01 {
      left: -3vw;
      bottom: 5.8vw;
    }
    .worries_solution_fig02 {
      right: -4.4vw;
      bottom: 5.8vw;
    }
    .worries_solution_fig01 img {
      width: 29vw;
      height: auto;
    }
    .worries_solution_fig02 img {
      width: 29vw;
      height: auto;
    }
  }

/*3つの疾患に特化した日帰り手術専門のクリニック*/
#three_diseases {
  background: #E2ECD5;
  padding: 70px 0 60px;
}
.three_diseases_ttl {
  margin-bottom: 20px;
}
.three_diseases_ttl span {
  display: block;
}
.three_diseases_ttl small {
  display: block;
  font-size: 1.6rem;
  margin-top: 3px;
  font-weight: 500;
}
.three_diseases_list {
  padding-bottom: 20px;
}
.three_diseases_list li {
  margin: 0 10px;
}
.three_diseases_txt h3 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.three_diseases_txt h3 span {
  display: inline-block;
  border-bottom: solid 3px #00804b;
}
.three_diseases_txt h3 b {
  color: #00804b;
}
.three_diseases_txt p {
  margin-bottom: 40px;
}
  @media screen and (max-width: 767px) {
    #three_diseases {
      padding: 8.66vw 0 6.66vw;
    }
    .three_diseases_ttl {
      margin-bottom: 4vw;
    }
    .three_diseases_ttl img {
      width: 67.2vw;
      height: auto;
    }
    .three_diseases_ttl small {
      font-size: 2.13vw;
      margin-top: 3.33vw;
    }
    .three_diseases_list {
      padding-bottom: 2.66vw;
    }
    .three_diseases_list li {
      margin: 0 1.33vw 2.66vw 1.33vw;
    }
    .three_diseases_list li img {
      width: 37.33vw;
      height: auto;
    }
    .three_diseases_txt {
      max-width: 78.66vw;
      margin: 0 auto;
    }
    .three_diseases_txt h3 {
      font-size: 3.46vw;
      margin-bottom: 2.66vw;
      font-weight: 700;
    }
    .three_diseases_txt h3 span {
      display: block;
      border-bottom: solid 2px #00804b;
      padding-bottom: 1vw;
    }
    .three_diseases_txt p {
      margin-bottom: 4vw;
    }
    .three_diseases_txt figure {
      text-align: center;
    }
  }

/*MESSAGE*/
#message {
  padding: 100px 0;
  background: url("../img/message_bg_pc.jpg") center top no-repeat;
  background-size: cover;
}
.message_wrap {
  background: #fff;
  padding: 70px 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.message_sub_ttl {
  font-size: 3.6rem;
  margin: 70px 0 75px;
}
.message_block {
  max-width: 830px;
  margin: 0 auto;
  line-height: 1.6;
}
.message_block p {
  margin-bottom: 30px;
}
.message_upper_txt img {
  float: left;
  margin: 0 20px 0 0;
}
.message_lower dl {
  padding-top: 30px;
}
.message_lower dd {
  font-size: 2.4rem;
}
  @media screen and (max-width: 767px) {
    #message {
      padding: 11.33vw 5.33vw;
      background: url("../img/message_bg_sp.jpg") center top no-repeat;
      background-size: cover;
    }
    .message_wrap {
      background: #fff;
      padding: 9.33vw 5vw 5vw;
      box-shadow: 0 0 1.33vw rgba(0,0,0,0.3);
    }
    .message_ttl img {
      width: 23.73vw;
      height: auto;
    }
    .message_sub_ttl {
      font-size: 4.8vw;
      margin: 8.66vw 0 4vw;
    }
    .message_block {
      max-width: 100%;
    }
    .message_block p {
      margin-bottom: 3.33vw;
    }
    .message_upper_txt img {
      float: none;
      display: block;
      width: 40vw;
      margin: 0 auto 6vw auto;
    }
    .message_lower dl {
      padding-top: 4vw;
    }
    .message_lower dd {
      font-size: 3.2vw;
    }
  }

/*5つのこだわり*/
.commitment_ttl h2 {
  padding: 80px 0 45px;
}
.commitment_ttl_fig {
  position: absolute;
  right: 0;
  bottom: 0;
}
.commitment_wrap {
  padding-bottom: 10px;
}
.commitment_block {
  position: relative;
  margin-bottom: 80px;
}
.commitment_block::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 465px;
  background: url("../img/commitment01_bg.jpg") center center no-repeat;
  background-size: cover;
}
.commitment_block:nth-child(even)::after {
  background: url("../img/commitment02_bg.jpg") center center no-repeat;
  background-size: cover;
}
  @media screen and (max-width: 767px) {
    .commitment_ttl h2 {
      padding: 12.66vw 0 10vw;
    }
    .commitment_ttl h2 img {
      width: 61vw;
      height: auto;
    }
    .commitment_ttl_fig {
      right: -4.8vw;
      bottom: 5vw;
    }
    .commitment_ttl_fig img {
      width: 20vw;
      height: auto;
    }
    .commitment_wrap {
      padding-bottom: 2.66vw;
    }
    .commitment_block {
      margin-bottom: 8vw;
      padding: 0 5.33vw;
    }
    .commitment_block::after {
      height: 45.33vw;
    }
  }

.commitment_block h3 {
  margin-bottom: 25px;
}
.commitment_block figure {
  margin-bottom: 25px;
}
.commitment_txt p {
  margin-bottom: 30px;
}
.commitment_txt p:last-child {
  margin-bottom: 0;
}
.commitment_feature {
  border: dashed 3px #6fa22c;
  border-radius: 6px;
  padding: 18px 32px;
  margin-top: 25px;
}
.commitment_feature p {
  font-weight: 700;
  color: #6fa22c;
  font-size: 2.2rem;
  line-height: 1.4;
}
.commitment_block:nth-child(even) .commitment_feature {
  border: dashed 3px #34b7f1;
}
.commitment_block:nth-child(even) .commitment_feature p {
  color: #34b7f1;
}
  @media screen and (max-width: 767px) {
    .commitment_block h3 {
      margin-bottom: 3.33vw;
    }
    .commitment_block figure {
      max-width: 78.66vw;
      margin: 0 auto 4vw auto;
    }
    .commitment_txt p {
      max-width: 78.66vw;
      margin: 0 auto 3.33vw auto;
    }
    .commitment_txt p:last-child {
      margin-bottom: 0;
    }
    .commitment_feature {
      border: dotted 2px #6fa22c;
      border-radius: 0.8vw;
      max-width: 78.66vw;
      margin: 3.33vw auto 0 auto;
      padding: 2.13vw 3.33vw;
    }
    .commitment_feature p {
      font-weight: 700;
      color: #6fa22c;
      font-size: 2.93vw;
      line-height: 1.4;
    }
    .commitment_block:nth-child(even) .commitment_feature {
      border: dotted 2px #34b7f1;
    }
  }

.commitment_movie {
  margin-top: 60px;
}
.commitment_movie dt {
  text-align: center;
  margin-bottom: 35px;
}
.movie_box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 360 / 640 = 0.5625 → 56.25% */
  height: 0;
}
.movie_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.commitment_movie dd {
  background: repeating-linear-gradient(
    -45deg,
    #a9c780 0 3.5px,   /* 背景色 3.5px */
    #ffffff 3.5px 6px  /* 白ストライプ 2.5px */
  );
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  padding: 40px 9%;
}
.commitment_block:nth-child(even) .commitment_movie dd {
  background: repeating-linear-gradient(
    -45deg,
    #34B7F1 0 3.5px,   /* 背景色 3.5px */
    #ffffff 3.5px 6px  /* 白ストライプ 2.5px */
  );
}
  @media screen and (max-width: 767px) {
    .commitment_movie {
      margin-top: 4vw;
    }
    .commitment_movie dt {
      margin-bottom: 3.73vw;
    }
    .commitment_movie dd {
      padding: 5vw;
    }
  }

#commitment01 {
  padding-top: 30px;
}
#commitment02 {
  padding-top: 30px;
}
#commitment03 {
  padding-top: 40px;
}
#commitment04 {
  padding-top: 40px;
}
#commitment04 .commitment_feature {
  padding: 18px 15px;
}
#commitment05 {
  padding-top: 40px;
}
  @media screen and (max-width: 767px) {
    #commitment01 {
      padding-top: 4vw;
    }
    #commitment02 {
      padding-top: 4vw;
    }
    #commitment03 {
      padding-top: 5.33vw;
    }
    #commitment04 {
      padding-top: 5.33vw;
    }
    #commitment04 .commitment_feature {
      padding: 2.13vw 3.33vw;
    }
    #commitment05 {
      padding-top: 5.33vw;
    }
    #commitment01 h3 img {
      width: 80.26vw;
      height: auto;
    }
    #commitment02 h3 img {
      width: 70.66vw;
      height: auto;
    }
    #commitment03 h3 img {
      width: 68.26vw;
      height: auto;
    }
    #commitment04 h3 img {
      width: 55.46vw;
      height: auto;
    }
    #commitment05 h3 img {
      width: 90.4vw;
      height: auto;
    }
    #commitment01 .commitment_movie dt img {
      width: 78.13vw;
      height: auto;
    }
    #commitment02 .commitment_movie dt img {
      width: 78.13vw;
      height: auto;
    }
    #commitment05 .commitment_movie dt img {
      width: 50.66vw;
      height: auto;
    }
  }

/*当クリニックのいいところ*/
#good_point {
  padding: 90px 0 10px;
  background: #F8F3E5;
}
.good_point_ttl {
  position: relative;
  padding-bottom: 80px;
}
.good_point_fig {
  position: absolute;
  left: 0;
  bottom: 35px;
}
.good_point_block {
  margin-bottom: 80px;
}
.good_point_block h3 {
  text-align: center;
  background: #FB830D;
  color: #fff;
  font-size: 3rem;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  border-radius: 30px;
  padding: 18px;
  margin-bottom: 35px;
  line-height: 1.3;
}
.good_point_block:nth-child(even) h3 {
  background: #FBA630;
}
.good_point_txt:after {
  content: "";
  display: block;
  clear: both;
}
.good_point_txt p {
  line-height: 1.6;
}
.good_point_txt p img {
  float: right;
  margin: 0 0 5px 30px;
}
.good_point_block:nth-child(even) .good_point_txt p img {
  float: left;
  margin: 0 30px 5px 0;
}
  @media screen and (max-width: 767px) {
    #good_point {
      padding: 11.33vw 0 2.66vw;
    }
    .good_point_ttl {
      padding-bottom: 10vw;
    }
    .good_point_ttl h2 img {
      width: 54.13vw;
      height: auto;
    }
    .good_point_fig {
      left: 7.4vw;
      bottom: 4vw;
    }
    .good_point_fig img {
      width: 13.33vw;
      height: auto;
    }
    .good_point_block {
      margin-bottom: 8vw;
      padding: 0 5.33vw;
    }
    .good_point_block h3 {
      font-size: 4vw;
      box-shadow: 0 0 0.8vw rgba(0,0,0,0.3);
      border-radius: 4vw;
      padding: 2vw;
      margin-bottom: 4vw;
      line-height: 1.4;
    }
    .good_point_txt {
      padding: 0 2vw;
    }
    .good_point_txt p img {
      width: 42.66vw;
      margin: 0 0 0 2vw;
    }
    .good_point_block:nth-child(even) .good_point_txt p img {
      margin: 0 2vw 0 0;
    }
  }

/*当クリニックで働くスタッフの年収例*/
#annual_income {
  padding: 70px 0 90px;
}
.annual_income_lead {
  position: relative;
  margin-bottom: 45px;
}
.annual_income_lead h2 {
  margin-bottom: 35px;
}
.annual_income_block ul {
  padding-bottom: 25px;
}
.annual_income_block li {
  margin: 0 5px;
}
.annual_income_block li img {
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.annual_income_fig {
  position: absolute;
  right: 120px;
  bottom: 0;
}
  @media screen and (max-width: 767px) {
    #annual_income {
      padding: 8vw 0 10.66vw;
    }
    .annual_income_lead {
      margin-bottom: 6.66vw;
    }
    .annual_income_lead h2 {
      margin-bottom: 5.33vw;
    }
    .annual_income_lead h2 img {
      width: 80.26vw;
      height: auto;
    }
    .annual_income_block ul {
      padding-bottom: 2.66vw;
    }
    .annual_income_block li {
      margin: 0 1.66vw 3.33vw 1.66vw;
    }
    .annual_income_block li img {
      width: 37.6vw;
      height: auto;
      border-radius: 1.33vw;
      box-shadow: 0 0 0.8vw rgba(0,0,0,0.3);
    }
    .annual_income_fig {
      right: -0.8vw;
      bottom: 0;
    }
    .annual_income_fig img {
      width: 14vw;
      height: auto;
    }
  }

/*先輩スタッフの声*/
#voice {
  padding: 70px 0;
  background: url("../img/voice_bg.jpg") center center no-repeat;
  background-size: cover;
}
#voice h2 {
  margin-bottom: 60px;
}
.voice_slider {
  width: 680px;
  padding-left: 10px;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    #voice {
      padding: 10.66vw 0;
      background: url("../img/voice_bg_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    #voice h2 {
      margin-bottom: 10.66vw;
    }
    #voice h2 img {
      width: 37.86vw;
      height: auto;
    }
    .voice_slider {
      width: 73.33vw;
      padding-left: 2.66vw;
    }
  }

.slick-arrow {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 10;
  cursor: pointer;
}
.slick-arrow.prev_btn {
  left: -65px;
}
.slick-arrow.next_btn {
  right: -65px;
}
  @media screen and (max-width: 767px) {
    .slick-arrow {
      top: calc(50% - 2.5vw);
    }
    .slick-arrow img {
      width: 5vw;
      height: auto;
    }
    .slick-arrow.prev_btn {
      left: -6.66vw;
    }
    .slick-arrow.next_btn {
      right: -6.66vw;
    }
  }

/*1日の流れ*/
#oneday {
  padding: 90px 0 70px 0;
}
.oneday_ttl {
  position: relative;
  margin-bottom: 60px;
}
.oneday_fig {
  position: absolute;
  right: 145px;
  bottom: -38px;
}
.oneday_block {
  max-width: 648px;
  margin: 0 auto 20px auto;
  border: solid 1px #000;
  padding: 0 20px;
}
.oneday_block figure {
  width: 240px;
  padding: 20px 0;
}
.oneday_txt {
  width: calc(100% - 260px);
  padding: 5px 0 20px;
}
.oneday_txt dl {
  min-height: 76px;
  align-items: center;
  border-bottom: dashed 2px #000;
  margin-bottom: 12px;
}
.oneday_txt dt {
  margin-right: 7px;
}
.oneday_txt dt span {
  display: inline-block;
  border-radius: 10px;
  background: #00804B;
  border: solid 1px #000;
  color: #fff;
  text-align: center;
  min-width: 76px;
  padding: 1px 10px;
  font-size: 2rem;
  font-weight: 700;
}
.oneday_block:nth-child(even) .oneday_txt dt span {
  background: #6fa22c;
}
.oneday_txt dd {
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: 700;
}
  @media screen and (max-width: 767px) {
    #oneday {
      padding: 10.66vw 5.33vw 8vw 5.33vw;
    }
    .oneday_ttl {
      margin-bottom: 6.66vw;
    }
    .oneday_ttl h2 img {
      width: 22.13vw;
      height: auto;
    }
    .oneday_fig {
      right: 10vw;
      bottom: -4.4vw;
    }
    .oneday_fig img {
      width: 20.66vw;
      height: auto;
    }
    .oneday_block {
      max-width: 100%;
      margin: 0 auto 2.66vw auto;
      padding: 0 2.66vw;
    }
    .oneday_block figure {
      width: 32vw;
      padding: 2vw 0;
    }
    .oneday_txt {
      width: calc(100% - 35vw);
      padding: 1.33vw 0 2.66vw;
    }
    .oneday_txt dl {
      min-height: 8.5vw;
      border-bottom: dotted 1px #000;
      margin-bottom: 2vw;
    }
    .oneday_txt dt {
      margin-right: 1.33vw;
    }
    .oneday_txt dt span {
      border-radius: 1.33vw;
      min-width: 10.13vw;
      padding: 0 1.33vw;
      font-size: 2.66vw;
    }
    .oneday_txt dd {
      font-size: 3.2vw;
    }
  }

/*数字で見る*/
#numbers {
  position: relative;
  background: url("../img/numbers_bg.jpg") center center no-repeat;
  background-size: cover;
}
#numbers .wrapper {
  padding: 90px 0 80px;
}
#numbers h2 {
  margin-bottom: 60px;
}
.numbers_fig {
  position: absolute;
  left: -50px;;
  bottom: 0;
}
  @media screen and (max-width: 767px) {
    #numbers {
      background: url("../img/numbers_bg_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    #numbers .wrapper {
      padding: 10.66vw 0;
    }
    #numbers h2 {
      margin-bottom: 8vw;
    }
    #numbers h2 img {
      width: 24.26vw;
      height: auto;
    }
    #numbers figure img {
      width: 80vw;
      height: auto;
    }
    .numbers_fig {
      position: absolute;
      left: 4vw;
      bottom: 10.66vw;
    }
    .numbers_fig img {
      width: 13.33vw;
      height: auto;
    }
  }

/*勤務地*/
#location {
  padding: 70px 0 80px;
}
#location h2 {
  margin-bottom: 80px;
}
.location_block {
  width: 392px;
}
.location_block h3 {
  color: #fba630;
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.location_block p {
  line-height: 1.3;
}
.location_block p span {
  display: block;
}
.location_block p b {
  display: block;
  margin-top: 10px;
}
.gmap {
  padding-top: 20px;
}
  @media screen and (max-width: 767px) {
    #location {
      padding: 10.66vw 5.33vw 2.66vw;
    }
    #location h2 {
      margin-bottom: 8vw;
    }
    #location h2 img {
      width: 15.73vw;
      height: auto;
    }
    .location_block {
      width: 100%;
      margin-bottom: 8vw;
    }
    .location_block h3 {
      font-size: 3.2vw;
      margin-bottom: 2.66vw;
    }
    .location_block p b {
      margin-top: 1.33vw;
    }
    .location_txt {
      height: auto!important;
    }
    .gmap {
      padding-top: 4vw;
    }
    .gmap iframe {
      width: 100%;
      height: 60vw;
    }
  }

/*ギャラリー*/
#photo_tour {
  padding: 100px 0;
  background: #F5FBFE;
}
#photo_tour h2 {
  margin-bottom: 60px;
}
.photo_tour_slider {
  width: 650px;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    #photo_tour {
      padding: 10.66vw 0;
    }
    #photo_tour h2 {
      margin-bottom: 8vw;
    }
    #photo_tour h2 img {
      width: 22.66vw;
      height: auto;
    }
    .photo_tour_slider {
      width: 72vw;
    }
  }

/*募集要項*/
#offer {
  padding: 80px 0 40px;
}
.offer_ttl {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 35px;
}
.offer_fig {
  position: absolute;
  left: 240px;
  bottom: 0;
}
.offer_block {
  width: 600px;
  margin: 0 auto;
}
.offer_box {
  font-size: 1.6rem;
  margin-bottom: 50px;
}
.offer_box h3 {
  background: #FB830D;
  text-align: center;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 5px 20px;
  margin-bottom: 15px;
}
.offer_box h3 small {
  display: inline-block;
  font-size: 80%;
}
.offer_box tr {
  background: #FEEDD6;
  border: solid 1px #000;
}
.offer_box tr:nth-child(even) {
  background: #FFFBF5;
}
.offer_box th {
  width: 115px;
  text-align: left;
  padding: 15px 0 15px 18px;
}
.offer_box td {
  padding: 15px 10px;
}
.offer_box h4 {
  line-height: 1.3;
  font-size: 2.2rem;
}
.offer_box h4 small {
  font-size: 80%;
}
.offer_box h5 {
  line-height: 1.3;
  font-size: 2rem;
}
.offer_box p {
  line-height: 1.5;
  margin-bottom: 18px;
}
.offer_box p:last-child {
  margin-bottom: 0;
}
.offer_bottom {
  position: relative;
  top: -1px;
}
  @media screen and (max-width: 767px) {
    #offer {
      padding: 12.66vw 0 5.33vw;
    }
    .offer_ttl {
      padding-bottom: 5.33vw;
      margin-bottom: 4.66vw;
    }
    .offer_ttl h2 img {
      width: 21.33vw;
      height: auto;
    }
    .offer_fig {
      left: 28vw;
      bottom: 0;
    }
    .offer_fig img {
      width: 9.6vw;
      height: auto;
    }
    .offer_block {
      width: 83.33vw;
    }
    .offer_box {
      font-size: 2.4vw;
      margin-bottom: 6.66vw;
    }
    .offer_box h3 {
      font-size: 3.46vw;
      border-radius: 3.33vw;
      padding: 1.33vw 4vw;
      margin-bottom: 2vw;
    }
    .offer_box th {
      width: 15.33vw;
      padding: 2vw 0 2vw 2vw;
    }
    .offer_box td {
      padding: 2vw 1.33vw;
    }
    .offer_box h4 {
      font-size: 3vw;
    }
    .offer_box h5 {
      font-size: 2.8vw;
    }
    .offer_box p {
      margin-bottom: 2.66vw;
    }
  }

.offer_bottom {
  display: none;
}
.offer_close_btn {
  display: none;
}
.offer_btn.activ .offer_close_btn {
  display: block;
}
.offer_btn.activ .offer_open_btn {
  display: none;
}

.offer_btn {
  background: #FB830D;
  position: relative;
  top: -2px;
  border: solid 1px #000;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
}
.offer_btn:hover {
  filter: brightness(1.1);
}
  @media screen and (max-width: 767px) {
    .offer_btn {
      font-size: 2.66vw;
      padding: 2vw;
    }
  }

#offer02 .offer_box h3 {
  background: #6FA22C;
}
#offer02 .offer_box tr {
  background: #E2ECD5;
}
#offer02 .offer_box tr:nth-child(even) {
  background: #F8FAF4;
}
#offer02 .offer_btn {
  background: #6FA22C;
}
#offer03 .offer_box h3 {
  background: #34B7F1;
}
#offer03 .offer_box tr {
  background: #D6F1FC;
}
#offer03 .offer_box tr:nth-child(even) {
  background: #F5FBFE;
}
#offer03 .offer_btn {
  background: #34B7F1;
}

/*勤務時間・休日*/
#working_hours {
  padding: 80px 0;
  background: url("../img/working_hours_bg.jpg") center center no-repeat;
  background-size: cover;
}
.working_hours_ttl {
  position: relative;
  padding-bottom: 45px;
  margin-bottom: 10px;
}
.working_hours_fig {
  position: absolute;
  right: 155px;
  bottom: 0;
}
#working_hours01 {
  margin-bottom: 55px;
}
#working_hours01 h3 {
  font-size: 2.6rem;
  margin-bottom: 25px;
  color: #6fa22c;
}
#working_hours01 p {
  line-height: 1.6;
  margin-bottom: 20px;
}
#working_hours01 b {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
  padding: 8px 20px;
  color: #fff;
  background: #6FA22C;
}
#working_hours02 h3 {
  font-size: 2.6rem;
  margin-bottom: 25px;
  color: #00804b;
}
.working_hours02_block {
  max-width: 600px;
  margin: 0 auto;
}
.working_hours02_block dl {
  border: solid 1px #000;
  background: #fff;
  width: 288px;
  padding: 10px 20px 25px;
  font-size: 2.2rem;
  font-weight: 700;
}
.working_hours02_block dt {
  color: #00804b;
}
.working_hours02_block dd {
  max-width: 240px;
  margin: 0 auto;
  border-top: solid 1px #000;
  line-height: 1.3;
  padding-top: 12px;
  margin-top: 12px;
}
  @media screen and (max-width: 767px) {
    #working_hours {
      padding: 10.66vw 0;
      background: url("../img/working_hours_bg_sp.jpg") center center no-repeat;
      background-size: cover;
    }
    .working_hours_ttl {
      padding-bottom: 6vw;
      margin-bottom: 1.33vw;
    }
    .working_hours_ttl h2 img {
      width: 33.6vw;
      height: auto;
    }
    .working_hours_fig {
      right: 17vw;
      bottom: 0;
    }
    .working_hours_fig img {
      width: 13.33vw;
      height: auto;
    }
    #working_hours01 {
      margin-bottom: 6.66vw;
    }
    #working_hours01 h3 {
      font-size: 3.46vw;
      margin-bottom: 2.66vw;
    }
    #working_hours01 p {
      margin-bottom: 2.66vw;
    }
    #working_hours01 b {
      font-size: 2.66vw;
      padding: 1.33vw 2.66vw;
    }
    #working_hours02 h3 {
      font-size: 3.46vw;
      margin-bottom: 2.66vw;
    }
    .working_hours02_block {
      max-width: 100%;
      justify-content: center;
    }
    .working_hours02_block dl {
      width: 38.66vw;
      margin: 0 0.8vw;
      padding: 2vw 2vw 2.66vw;
      font-size: 2.93vw;
    }
    .working_hours02_block dd {
      max-width: 32vw;
      padding-top: 2vw;
      margin-top: 2vw;
    }
  }

/*採用の流れ*/
#flow {
  background: #D6F1FC;
  padding: 70px 0 80px;
}
.flow_ttl {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 25px;
}
.flow_fig {
  position: absolute;
  left: 190px;
  bottom: 0;
}
.flow_block {
  border: solid 2px #34b7f1;
  background: #fff;
  margin-bottom: 20px;
  padding: 20px 25px;
}
.flow_block figure {
  width: 90px;
}
.flow_txt {
  width: calc(100% - 120px);
}
.flow_txt h3 {
  color: #34b7f1;
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 700;
}
  @media screen and (max-width: 767px) {
    #flow {
      padding: 10.66vw 5.33vw 8vw;
    }
    .flow_ttl {
      padding-bottom: 3.33vw;
      margin-bottom: 4vw;
    }
    .flow_ttl h2 img {
      width: 24.26vw;
      height: auto;
    }
    .flow_fig {
      left: 16.8vw;
      bottom: 0;
    }
    .flow_fig img {
      width: 14.66vw;
      height: auto;
    }
    .flow_block {
      border: solid 1px #34b7f1;
      background: #fff;
      margin-bottom: 2vw;
      padding: 2vw 3.33vw;
    }
    .flow_block figure {
      width: 12vw;
    }
    .flow_txt {
      width: calc(100% - 16vw);
    }
    .flow_txt h3 {
      font-size: 4vw;
      margin-bottom: 1.33vw;
    }
  }

.flow_block:nth-child(even) {
  border: solid 2px #2a7edf;
}
.flow_block:nth-child(even) .flow_txt h3 {
  color: #2a7edf;
}
  @media screen and (max-width: 767px) {
    .flow_block:nth-child(even) {
      border: solid 1px #2a7edf;
    }
  }

/*ここまで読んでくれてありがとうございます*/
#gratitude {
  padding-top: 60px;
}
.gratitude01_block {
  padding-bottom: 5px;
}
.gratitude01_block h2 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}
.gratitude01_block h2 small {
  display: block;
  font-size: 3rem;
}
.gratitude01_block h2 span {
  display: block;
  color: #fb830d;
  font-size: 6rem;
}
.gratitude01_txt {
  font-size: 2rem;
}
.gratitude01_txt p {
  line-height: 1.8;
  margin-bottom: 25px;
}
.gratitude01_txt p span {
  color: #fb830d;
  font-weight: 700;
}
.gratitude_fig01 {
  position: absolute;
  left: -40px;
  bottom: 0;
}
.gratitude_fig02 {
  position: absolute;
  right: 0;
  bottom: 0;
}
  @media screen and (max-width: 767px) {
    #gratitude {
      padding-top: 8vw;
    }
    .gratitude01_block {
      padding-bottom: 1.33vw;
    }
    .gratitude01_block h2 {
      margin-bottom: 4vw;
    }
    .gratitude01_block h2 small {
      font-size: 4vw;
    }
    .gratitude01_block h2 span {
      font-size: 8vw;
    }
    .gratitude01_txt {
      font-size: 2.66vw;
    }
    .gratitude01_txt p {
      margin-bottom: 3.33vw;
    }
    .gratitude_fig01 {
      left: -12vw;
    }
    .gratitude_fig02 {
      right: -9.33vw;
    }
    .gratitude_fig01 img {
      width: 34.66vw;
      height: auto;
    }
    .gratitude_fig02 img {
      width: 30.66vw;
      height: auto;
    }
  }

#gratitude02 {
  background: #FBA630;
  padding: 25px 0 35px;
}
.gratitude02_block h2 {
  margin-bottom: 15px;
}
.gratitude02_block h2 span {
  display: inline-block;
  background: #fff;
  font-size: 2.8rem;
  padding: 7px 40px;
  border-radius: 10px;
  color: #fb830d;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.gratitude02_txt p {
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.3);
  line-height: 1.6;
}
  @media screen and (max-width: 767px) {
    #gratitude02 {
      padding: 4vw 0 6.66vw;
    }
    .gratitude02_block h2 {
      margin-bottom: 2vw;
    }
    .gratitude02_block h2 span {
      font-size: 3.73vw;
      padding: 1.33vw 5vw;
      border-radius: 1.33vw;
      box-shadow: 0 0 0.8vw rgba(0,0,0,0.3);
    }
    .gratitude02_txt p {
      font-size: 3.2vw;
      text-shadow: 0 0 0.8vw rgba(0,0,0,0.3);
    }
  }

/*求人に応募する*/
#contact {
  position: relative;
  background: #F8F3E5;
  padding: 75px 0 120px;
}
#contact h2 {
  margin-bottom: 62px;
}
.contact_box {
  max-width: 1020px;
  margin: 0 auto;
}
  @media screen and (max-width: 767px) {
    #contact {
      padding: 8vw 5.33vw 15.33vw;
    }
    #contact h2 {
      margin-bottom: 6.66vw;
    }
    #contact h2 img {
      width: 60vw;
      height: auto;
    }
    .contact_box {
      max-width: 100%;
    }
  }

.contact_tel {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  box-shadow : 0 0 6px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.contact_tel h3 {
  background: #34B7F1;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  padding: 30px 20px;
}
.contact_tel_block {
  padding: 50px 30px;
}
.contact_tel dt {
  margin-bottom: 20px;
}
.contact_tel dt span {
  display: inline-block;
}
.contact_tel dd strong {
  display: block;
  margin-bottom: 15px;
}
.contact_tel dd small {
  display: block;
  font-size: 1.6rem;
}
  @media screen and (max-width: 767px) {
    .contact_tel {
      margin-bottom: 5.33vw;
      box-shadow : 0 0 0.8vw rgba(0, 0, 0, 0.3);
      border-radius: 1.6vw;
    }
    .contact_tel h3 {
      font-size: 4vw;
      padding: 3.33vw;
    }
    .contact_tel_block {
      padding: 6.66vw 5.33vw;
    }
    .contact_tel dt {
      margin-bottom: 3.33vw;
    }
    .contact_tel dt span {
      display: inline-block;
    }
    .contact_tel dt img {
      width: 76vw;
      height: auto;
    }
    .contact_tel dd strong {
      margin-bottom: 1.33vw;
    }
    .contact_tel dd small {
      font-size: 2.13vw;
    }
  }

.contact_line {
  margin-bottom: 50px;
  box-shadow : 0 0 6px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.contact_line h3 {
  background: #00C000;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  padding: 30px 20px;
}
.contact_line_block {
  padding: 50px 30px;
}
.contact_line_block ul {
  margin-top: 40px;
}
.contact_line_block li {
  width: 250px;
  border: solid 3px #00c000;
  border-radius: 10px;
  margin: 0 12px;
  padding: 25px 20px;
}
.contact_line_block li h4 {
  font-size: 3rem;
  font-weight: 700;
  color: #00c000;
}
.contact_line_block li p {
  font-size: 2rem;
  margin-top: 10px;
}
  @media screen and (max-width: 767px) {
    .contact_line {
      margin-bottom: 10.66vw;
      box-shadow : 0 0 0.8vw rgba(0, 0, 0, 0.3);
      border-radius: 1.6vw;
    }
    .contact_line h3 {
      font-size: 4vw;
      padding: 3.33vw;
    }
    .contact_line_block {
      padding: 6.66vw 5.33vw 4vw 5.33vw;
    }
    .contact_line_block ul {
      margin-top: 5vw;
    }
    .contact_line_block li {
      width: 33.6vw;
      border: solid 2px #00c000;
      border-radius: 1.33vw;
      margin: 0 1.33vw 2.66vw;
      padding: 2vw 2vw 2.66vw 2vw;
    }
    .contact_line_block li h4 {
      font-size: 4vw;
    }
    .contact_line_block li p {
      font-size: 2.66vw;
      margin-top: 0.8vw;
    }
      }

.form_box {
  box-shadow : 0 0 6px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.form_box h3 {
  background: #FBA630;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  padding: 30px 20px;
}
.contact_form_block {
  padding: 40px 30px 80px;
}
  @media screen and (max-width: 767px) {
    .form_box {
      box-shadow : 0 0 0.8vw rgba(0, 0, 0, 0.3);
      border-radius: 1.6vw;
    }
    .form_box h3 {
      font-size: 4vw;
      padding: 3.33vw;
    }
    .contact_form_block {
      padding: 2vw 5vw 8vw;
    }
  }

.form_entry {
  max-width: 855px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.form_entry dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  padding: 25px 0;
  border-bottom: dotted 2px #bbb;
}
.form_entry dt {
  width: 210px;
  margin-bottom: 5px;
}
.form_entry dd {
  width: calc(100% - 230px);
}
.form_entry label {
  margin-right: 25px;
}
  @media screen and (max-width: 767px) {
    .form_entry {
      max-width: 100%;
      padding-bottom: 6.66vw;
    }
    .form_entry dl {
      display: block;
      font-size: 2.66vw;
      padding: 3.33vw 0;
      border-bottom: dotted 1px #bbb;
    }
    .form_entry dt {
      width: 100%;
      margin-bottom: 2vw;
    }
    .form_entry dd {
      width: 100%;
    }
    .form_entry label {
      margin-right: 3.33vw;
    }
  }



/* ------------------------------プレースホルダーの色・サイズ指定------------------------------　*/
input::-webkit-input-placeholder {color:#646464; font-size:20px; opacity: 1; }
input:-moz-placeholder {color:#646464; font-size:20px; opacity: 1; }
textarea::-webkit-input-placeholder {color:#646464; font-size:20px; opacity: 1; }
textarea:-moz-placeholder {color:#646464; font-size:20px; opacity: 1; }
  @media screen and (max-width: 767px) {
    input::-webkit-input-placeholder {color:#646464; font-size:16px; opacity: 1; }
    input:-moz-placeholder {color:#646464; font-size:16px; opacity: 1; }
    textarea::-webkit-input-placeholder {color:#646464; font-size:16px; opacity: 1; }
    textarea:-moz-placeholder {color:#646464; font-size:16px; opacity: 1; }
  }

/* ------------------------------コンタクトフォーム７------------------------------　*/
div.wpcf7 { display:block; width:100%; margin:0 auto!important; box-shadow:none; background:transparent; }
div.wpcf7 p { padding:0; margin:0; line-height:1.5; }
div.wpcf7 .wpcf7-text, .wpcf7 textarea , .wpcf7 select { width:100%; border:1px solid #aaa; padding: 12px 15px; font-size: 2rem; border-radius: 0; outline: none; }
.wpcf7 select {
  min-height: 53px;
}
div.wpcf7 textarea { height:215px; }
.wpcf7 input:focus, .wpcf7 textarea:focus { border:1px solid #009de1; }
.wpcf7-captchac { border:1px solid #646464; }
  @media screen and (max-width:768px){
    div.wpcf7 { width:100%; }
    div.wpcf7 .wpcf7-text, .wpcf7 textarea , .wpcf7 select {
      width: 100%;
      border: 1px solid #B3B3B3;
      padding: 5px 10px;
      font-size: 1.6rem;
      border-radius: 0;
    }
    .wpcf7 select {
      min-height: 40px;
    }
  }

input,
textarea {
  transition: all .3s;
  -webkit-transition: all .3s;
  -ms-transition:none;
  border-radius: 10px;
}
input:focus,
textarea:focus {
  box-shadow: 0 0 7px #52a8ec;
}
.hissu { 
  display: inline-block;
  color:#fff;
  background: #FBA630;
  padding: 1px 14px;
  margin:0 0 0 7px;
  font-size: 1.4rem;
  vertical-align: middle;
  font-weight: 700;
}
.nini { 
  display: inline-block;
  color:#fff;
  background: #B5B5B6;
  padding: 1px 14px;
  margin:0 0 0 7px;
  font-size: 1.4rem;
  vertical-align: middle;
  font-weight: 700;
}
  @media screen and (max-width: 767px) {
    .hissu { 
      padding: 0.13vw 2vw;
      margin:0 0 0 1.33vw;
      font-size: 2.13vw;
    }
    .nini { 
      padding: 0.13vw 2vw;
      margin: 0 0 0 1.33vw;
      font-size: 2.13vw;
    }
  }

.wpcf7-form-control-wrap {
  display: block;
}
span.wpcf7-list-item {
  position: relative;
  margin: 0 15px 0 0 !important;/*項目ごとの余白を調整*/
}
.wpcf7-list-item-label {/*項目の色や文字サイズ*/
  cursor: pointer;
  font-size: 2.2rem;
}
  @media screen and (max-width: 767px) {
    span.wpcf7-list-item {
      margin: 0 7px 0 0 !important;/*項目ごとの余白を調整*/
    }
    .wpcf7-list-item-label {/*項目の色や文字サイズ*/
      font-size: 1.6rem;
    }
  }

.wpcf7-radio .wpcf7-list-item {
  display: inline-flex;
  align-items: center; /* 上下センタリング */
  gap: 6px; /* ボタンとテキストの間隔 */
  margin-right: 12px; /* 項目間の間隔 */
}
.wpcf7-radio .wpcf7-list-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #666;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  top: 2px;
}
.wpcf7-radio .wpcf7-list-item input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.wpcf7-radio .wpcf7-list-item-label {
  font-size: 2rem;
  line-height: 1;
  margin-left: 5px;
}
  @media screen and (max-width: 767px) {
    .wpcf7-radio .wpcf7-list-item {
      margin-right: 10px; /* 項目間の間隔 */
    }
    .wpcf7-radio .wpcf7-list-item input[type="radio"] {
      width: 14px;
      height: 14px;
      border: 1px solid #666;
      top: 1px;
    }
    .wpcf7-radio .wpcf7-list-item input[type="radio"]:checked::after {
      width: 8px;
      height: 8px;
    }
    .wpcf7-radio .wpcf7-list-item-label {
      font-size: 1.6rem;
      margin-left: 3px;
    }
  }

/* ------------------------------エラー個所をわかりやすく表示------------------------------　*/
/*.wpcf7 .wpcf7-not-valid { background:#ffb6c1; }
.wpcf7 span.wpcf7-not-valid-tip { font-size:80%; }
.wpcf7 .wpcf7-response-output {margin:10px 0 0; padding:8px 35px 8px 14px; text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);
-webkit-border-radius: 4px; -moz-border-radius:4px; border-radius:4px; }
.wpcf7 .wpcf7-validation-errors { color:#E77764; background-color:#F2DEDE; border:1px solid #EED3D7;}
.wpcf7 .wpcf7-mail-sent-ok { color:#3A87AD; background-color:#D9EDF7; border:1px solid #BCE8F1;}*/

/* ------------------------------送信ボタン------------------------------　*/
#contact_form input[type="submit"] { 
  display: block;
  width: 100%;
  max-width: 680px;
  background : #FBA630;
  color: #fff;
  border: none;
  font-size: 3rem;
  padding: 35px;
  font-weight: 600;
  margin: 0 auto;
  border-radius: 60px;
  letter-spacing: 0.1em;
}
#contact_form input[type="submit"]:hover {
  filter: brightness(1.1);
}
  @media screen and (max-width:768px){
    #contact_form input[type="submit"] { 
      max-width: 100%;
      font-size: 4vw;
      padding: 4.8vw;
      border-radius: 8vw;
    }
  }
 /* -------------------------お問い合わせありがとうございます------------------------　*/
#thanks{
	text-align: center;
}
#thanks h2{
	color: #ddd;
	font-size: 8vw;
}
#thanks section{}
#thanks section h3{
	font-size: 3vw;
	margin-bottom: 3vw;
}
#thanks section p{
	line-height: 1.8;
}
#thanks section p.p2{
	font-size: 0.8em;
	margin-bottom: 2vw;
}
#thanks section p.btn_top{}
#thanks section p.btn_top a{}
#thanks section p.btn_top a:hover{}