@charset "UTF-8";
/*!
Theme Name: hirata-oto
Description: 医療法人平田耳鼻咽喉科医院
Theme URI: https://www.hirata-oto.com
Version: 1.0
License: hirata-oto
License https://www.hirata-oto.com
*/
/****************************************

リセットCSSここから

*****************************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*1em=10px */
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

img {
  vertical-align: top;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/****************************************

共通変数

*****************************************/
/****************************************

メディアクエリ/レスポンシブ用mixin

*****************************************/
/****************************************

フォント

*****************************************/
/****************************************

アニメーション系

*****************************************/
/* ホバー下線表示（左から） */
/* ホバー下線表示（左から,複数行） */
/* ホバー下線消える（左から,複数行） */
/* ホバー下線消える（左から） */
/****************************************

body設定(主に書式)

*****************************************/
body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku gothic ProN", "ＭＳ Ｐゴシック", "MS Pgothic", sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
  letter-spacing: 0.06em;
  min-width: 1240px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
    line-height: 1.7;
  }
}
/****************************************

ページ共通

*****************************************/
#wrapper {
  width: 100%;
  min-height: 100%;
  float: none;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #wrapper {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    float: none;
    margin: 0 auto;
    overflow: hidden;
  }
}
/****************************************
フォント指定

*****************************************/
li,
tt,
tr,
dt,
dd,
p {
  font-size: 1.8rem;
}

h1 {
  font-weight: bold;
  font-size: 2.7rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.4em;
  font-weight: bold;
}

.gothic {
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 767px) {
  li,
  tt,
  tr,
  dt,
  dd,
  p {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.6rem;
  }
}
/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link, a:visited {
  font-weight: normal;
  color: #000;
  text-decoration: underline;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover, a:active {
  color: #82c12c;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover img.img_opacity {
  opacity: 0.75;
  filter: alpha(opacity=75);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a img.img_opacity {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:hover img.img_up {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
a img.img_up {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

a.tellink {
  text-decoration: none;
}

a.linkline {
  color: #000;
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
  background-image: linear-gradient(90deg, #000, #000); /* 線の色 */
  background-repeat: no-repeat;
  background-position: right bottom; /* 線の起点を左・下に設定 */
  background-size: 100% 1px; /* 線の横幅を100%にする */
  -webkit-transition: background-size 0.9s;
  transition: background-size 0.9s; /* 線を伸ばすアニメーション実行時間を指定（0.9秒かけて線の横幅を0から100%にする） */
}
a.linkline:hover {
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  color: #82c12c;
}

/* PCのの場合は電話番号のリンク無効 */
@media screen and (min-width: 768px) {
  a.tellink {
    pointer-events: none;
  }
}
/****************************************

pcヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_navi {
    display: none;
  }
  header {
    position: relative;
    margin: 0 auto 0;
  }
  .header_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 10px 2.5% 0px;
  }
  .header_top .logo {
    margin-right: 35px;
  }
  .header_top .logo a {
    display: block;
  }
  .header_top .header_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-top: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .header_top .header_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header_top .header_info a {
    margin-left: 26px;
  }
  .header_txt {
    margin-left: 2.5%;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: #5e5e5e;
    margin-top: 8px;
  }
  /* 画像の場合 */
  a.contact_tel_img {
    display: block;
  }
  .header_calender {
    position: absolute;
    right: 14.9%;
    bottom: -80px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1920px) and (min-width: 768px) {
  .header_calender {
    right: 1.5%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1920px) and (min-width: 768px) and (max-width: 1530px) and (min-width: 768px) {
  .header_calender.calender_bg {
    min-width: 540px;
    width: 31.5%;
    padding: 15px 20px 20px;
  }
  .header_calender .calender_table {
    max-width: 560px;
    min-width: 450px;
    width: auto;
  }
  .header_calender .calender_table tbody th {
    font-size: 1.5rem;
  }
  .header_calender .calender_table caption {
    padding-top: 12px;
  }
  .header_calender .calender_table caption li {
    font-size: 1.4rem;
  }
}
/****************************************

spヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  #g_navi {
    display: none;
  }
  img {
    width: 100%;
    height: auto;
  }
  header {
    position: relative;
    background: url(images/bg_head.jpg) top right repeat-y;
  }
  .header_top {
    min-height: 70px;
    padding: 20px 15px 10px;
    width: 100%;
  }
  .logo a {
    display: block;
    margin: 0px 0 10px 0px;
    z-index: 9;
    width: 80%;
    max-width: 320px;
  }
  .header_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    display: none;
  }
  .header_info {
    display: none;
    margin: 15px 10px 15px;
    width: 100%;
    text-align: center;
  }
  .header_txt {
    display: none;
  }
  a.contact_tel {
    font-size: 3rem;
    font-weight: bold;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-decoration: none;
    padding-left: 25px;
    background: url(images/icon_tel.svg) center left no-repeat;
    background-size: 20px;
    font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  #toggle {
    width: 50px;
    height: 50px;
    background: #82c12c;
    cursor: pointer;
    z-index: 9999;
    position: fixed;
    right: 10px;
    top: 10px;
    opacity: 0.95;
  }
  #toggle:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
  }
  #toggle:after {
    position: absolute;
    content: "MENU";
    line-height: 1.2;
    color: #fff;
    text-align: center;
    bottom: 5px;
    left: 0;
    width: 100%;
    font-weight: 500;
    font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    /*#navToggle div に対して*/
    width: 26px;
    height: 2px;
    background: #fff;
    right: 12px;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  #toggle span:nth-child(1) {
    top: 11px;
  }
  #toggle span:nth-child(2) {
    top: 18px;
  }
  #toggle span:nth-child(3) {
    top: 25px;
  }
  /*spanの絶対位置指定の親にします*/
  .open_navi #toggle {
    position: fixed;
  }
  .open_navi #toggle span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-315deg);
    transform: translateY(7px) rotate(-315deg);
  }
  .open_navi #toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .open_navi #toggle span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(315deg);
    transform: translateY(-7px) rotate(315deg);
  }
  #sp_navi {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background-color: rgba(63, 193, 237, 0.9); /*spナビ背景*/
    z-index: 999;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .open_navi #sp_navi {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu {
    padding-top: 80px;
    text-align: center;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: center;
    border: rgba(210, 233, 177, 0.7) 1px solid; /*spナビ線*/
    cursor: pointer;
    color: #fff; /*spナビ文字色*/
    margin: 0 auto;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #sp_navi .menu > .menu-item:not(:last-child) {
    border-bottom: none;
  }
  #sp_navi .menu-item a {
    display: block;
    padding: 11px 0 10px;
    font-weight: 600;
  }
  #sp_navi .menu-item span {
    display: block;
    padding: 0px 8px;
    font-size: 1rem;
  }
  #sp_navi .menu-item a:link, #sp_navi .menu-item a:visited, #sp_navi .menu-item a:hover, #sp_navi .menu-item a:active {
    color: #fff; /*spナビ文字色-カテゴリ*/
    text-decoration: none;
    font-weight: 600;
  }
  #sp_navi .sub-menu li a:link, #sp_navi .sub-menu li a:visited, #sp_navi .sub-menu li a:hover, #sp_navi .sub-menu li a:active {
    color: #82c12c; /*オルガン文字色★1*/
    text-decoration: none;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 11px 0 10px;
    font-weight: 600;
    letter-spacing: 0em;
    background: rgba(255, 255, 255, 0.9); /*オルガン背景*/
  }
  #sp_navi .sub-menu li a:hover {
    color: #fff;
    background: none;
  }
  #sp_navi .sub-menu li {
    width: 100%;
    text-align: center;
    border-top: #DDD 1px solid; /*オルガン上線*/
  }
  #sp_navi .sub-menu {
    width: 100%;
    text-align: center;
    display: none;
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 0px;
    border-top: solid 3px #d2e9b1; /*カテゴリ矢印*/
    border-right: solid 3px #d2e9b1; /*カテゴリ矢印*/
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 14px;
    right: 20px;
  }
  #sp_navi .menu-item-has-children.menu_open::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    top: 22px;
  }
}
/****************************************

pc用 横ナビ

*****************************************/
#g_navi {
  width: auto;
}
#g_navi .menu {
  *zoom: 1;
  width: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#g_navi .menu li {
  position: relative;
  width: auto;
  text-align: center;
  line-height: 0;
}
#g_navi .menu li a {
  display: block;
  height: 100px;
  padding: 0 25px;
  margin: 0;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  word-break: keep-all;
}
@media print, screen and (max-width: 1530px) and (min-width: 768px) {
  #g_navi .menu li a {
    font-size: 1.8rem;
    padding: 0 16px;
  }
}
#g_navi .menu li a:hover {
  color: rgba(130, 193, 44, 0.75);
  translate: 0.4s linear;
}
#g_navi .menu li a:hover span {
  color: rgba(130, 193, 44, 0.75);
}
#g_navi .menu li ul {
  width: 100%;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  margin: 0;
  padding: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* サブメニュー：横幅固定 */
  min-width: 150px;
}
#g_navi .menu li ul li {
  width: 100%;
  height: auto;
}
#g_navi .menu li ul li a {
  width: 100%;
  height: auto;
  padding: 15px 5px;
  border-top: 1px solid #ccc;
  font-size: 1.5rem;
  font-weight: 600;
  background: rgba(130, 193, 44, 0.95);
  color: #fff;
  text-align: center;
  opacity: 0.95;
  text-shadow: none;
  font-weight: normal;
}
#g_navi .menu li ul li a:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #82c12c;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
#g_navi .menu li ul {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.95;
}
#g_navi .menu li ul li a {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  .menu > li > a::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    width: 0;
    height: 3px;
    background: rgba(130, 193, 44, 0.75);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .menu > li > a:hover::after {
    width: 100%;
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
  .menu-item-has-children > a {
    cursor: pointer;
  }
}
/****************************************

ティーザー

*****************************************/
@media print, screen and (min-width: 768px) {
  /* スライダーの場合 */
  #slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  /* WPでは不要 */
  #slider .slider_img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  /* WPの設定 */
  .metaslider {
    width: 100%;
    height: auto;
  }
  .metaslider .slides img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #slider .metaslider {
    max-width: none !important; /* WP設定消して、中央揃え */
  }
  /*slider下ナビ（ドット）*/
  .metaslider .flex-control-nav {
    bottom: -40px !important;
  }
}
.slider_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 53.95%;
}
@media print, screen and (min-width: 768px) {
  .slider_txt {
    margin-left: 10px;
    padding-bottom: 120px;
  }
}
.slider_txt .slider_txt_img {
  width: 100%;
  height: auto;
}

.metaslider .flexslider {
  margin: 0 !important; /* 不要なWP設定消 */
}

.mv {
  width: 100%;
  position: relative;
  margin: 0px auto;
}
.mv .mv_bg {
  height: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv .mv_guidance {
  background: url(images/mv_guidance_bg.jpg) top center no-repeat;
}
.mv .mv_medical {
  background: url(images/mv_medical_bg.jpg) top center no-repeat;
}
.mv .mv_hearing_aid {
  background: url(images/mv_hearing_aid_bg.jpg) top center no-repeat;
}
.mv .mv_hay_fever {
  background: url(images/mv_hay_fever_bg.jpg) top center no-repeat;
}
.mv .mv_scuba_diving {
  background: url(images/mv_scuba_diving_bg.jpg) top center no-repeat;
}
.mv .mv_information {
  background: url(images/mv_information_bg.jpg) top center no-repeat;
}
@media print, screen and (max-width: 1530px) and (min-width: 768px) {
  .mv .mv_information {
    background-position: top left 35%;
  }
}
.mv .mv_txt {
  text-align: center;
}
.mv .mv_txt p {
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #82c12c;
  text-shadow: #FFF 2px 0px 18px, #FFF -2px 0px 18px, #FFF 0px -2px 18px, #FFF 0px 2px 18px, #FFF 2px 2px 18px, #FFF -2px 2px 18px, #FFF 2px -2px 18px, #FFF -2px -2px 18px, #FFF 1px 2px 18px, #FFF -1px 2px 18px, #FFF 1px -2px 18px, #FFF -1px -2px 18px, #FFF 2px 1px 18px, #FFF -2px 1px 18px, #FFF 2px -1px 18px;
}

@media screen and (max-width: 767px) {
  #slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    width: 150%;
    margin: 0 0 0 -25%;
    margin-bottom: 50px;
  }
  .slider_txt {
    width: 60%;
  }
  .mv .mv_bg {
    height: 160px;
    background-size: cover;
  }
  .mv .mv_txt {
    width: 70%;
  }
  .mv .mv_txt p {
    font-size: 2.3rem;
    line-height: 1.4;
    text-shadow: #FFF 2px 0px 18px, #FFF -2px 0px 18px, #FFF 0px -2px 18px, #FFF 0px 2px 18px, #FFF 2px 2px 18px, #FFF -2px 2px 18px, #FFF 2px -2px 18px, #FFF -2px -2px 18px, #FFF 1px 2px 18px, #FFF -1px 2px 18px, #FFF 1px -2px 18px, #FFF -1px -2px 18px;
  }
}
/****************************************

タイトル

*****************************************/
.headline {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 55px;
  text-align: center;
}
.headline span {
  font-size: 1.8rem;
  color: #82c12c;
  display: block;
  margin-top: 10px;
}

#single_box .headline {
  font-size: 2.8rem;
  margin-bottom: 40px;
}

/* 下線(+img) */
.subhead01 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  padding: 0px 0px 15px 50px;
  line-height: 1.2;
  background: url(images/subhead01_bg.svg) top left no-repeat;
  border-bottom: 1px solid #32421c;
}

/* 下線（破線） */
.subhead02 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 25px;
  line-height: 1.2;
  padding: 0px 0px 10px;
  border-bottom: 2px dashed #3fc1ed;
}

/* 背景色(02pgのみ) */
.subhead03 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #FFF;
  margin-bottom: 15px;
  line-height: 1.2;
  padding: 13px 30px 13px;
  border-radius: 25px;
  background: #a7dd60;
}

@media screen and (max-width: 767px) {
  .headline {
    font-size: 2.3rem;
    letter-spacing: 0.025em;
    margin-bottom: 35px;
  }
  .headline span {
    font-size: 1.5rem;
    margin-top: 5px;
  }
  #single_box .headline {
    font-size: 2.1rem;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .subhead01 {
    font-size: 2.1rem;
    margin-bottom: 20px;
    padding: 0px 0px 10px 45px;
    background-size: 36px auto;
  }
  .subhead02 {
    font-size: 1.9rem;
  }
  .subhead02 span {
    font-size: 2.6rem;
  }
  .subhead03 {
    font-size: 1.6rem;
    padding: 13px 15px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
}
/****************************************

content 共通設定

*****************************************/
main#top_main {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  main#top_main {
    line-height: 2.2;
  }
}

main#page_main {
  width: 1200px;
  margin: 0px auto 145px;
}

.breadcrumb_area {
  text-align: right;
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb_area .breadcrumb {
  padding: 20px 0px 70px;
  line-height: 1.5;
}
.breadcrumb_area .breadcrumb p {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.breadcrumb_area .breadcrumb a {
  position: relative;
  text-decoration: none;
  padding-bottom: 0.08em;
  color: #000;
}
.breadcrumb_area .breadcrumb a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  text-align: center;
  background: #000;
  -webkit-transition: -webkit-transform 0.9s;
  transition: -webkit-transform 0.9s;
  transition: transform 0.9s;
  transition: transform 0.9s, -webkit-transform 0.9s;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.breadcrumb_area .breadcrumb a:hover::after {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.breadcrumb_area .breadcrumb a:hover {
  color: #82c12c;
}

.none {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb_area {
    width: 100%;
  }
  .breadcrumb_area .breadcrumb {
    position: relative;
    padding: 10px 10px 25px;
    left: auto;
    bottom: auto;
  }
  .breadcrumb_area .breadcrumb p {
    font-size: 1.4rem;
  }
  main#top_main {
    width: 100%;
    padding: 0px 10px;
    margin: 0px auto 0px;
  }
  main#page_main {
    width: 100%;
    padding: 0px 10px 60px;
    margin: 0;
  }
  .sp_none {
    display: none;
  }
}
/****************************************

ボタン

*****************************************/
/* 単色（水色 ＋矢印>） */
.btn01 {
  width: 230px;
  background: #3fc1ed;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  border-radius: 10px;
  line-height: 1.7;
}
.btn01 a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 11px 25px 13px;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
.btn01:hover {
  background: rgba(130, 193, 44, 0.9);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.btn01:hover a {
  color: #FFF;
}

@media print, screen and (min-width: 768px) {
  .btn01.w260 {
    width: 260px;
  }
  .btn01.w260 a {
    padding: 13px 25px 15px;
  }
  .btn01.w280 {
    width: 280px;
  }
}
/* 黄緑（＋矢印>） */
.btn02 {
  width: 260px;
  background: #82c12c;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  border-radius: 10px;
  line-height: 1.7;
}
.btn02 a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 13px 25px 15px;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  color: #FFF;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
.btn02:hover {
  background: rgba(63, 193, 237, 0.9);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.btn_center p {
  margin: 0 auto;
}

.btn_right p {
  margin-left: auto;
}

/* トップページ複数並び */
.multi_column_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .multi_column_btn p {
    margin-left: 40px;
  }
  .multi_column_btn p a:after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .btn01, .btn02 {
    width: 80%;
    margin: 0px auto;
  }
  .btn01 a, .btn02 a {
    font-size: 1.6rem;
    padding: 14px 20px;
  }
  .btn02 a {
    padding: 10px 15px;
  }
  .contact_btn a {
    font-size: 2.2rem;
    word-break: break-word;
    word-break: auto-phrase;
  }
  .contact_btn a:before {
    background-size: contain;
  }
  .multi_column_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .multi_column_btn p {
    margin: 0 auto 10px;
    margin-top: 15px;
  }
}
/****************************************

contentトップ用

*****************************************/
.top_box01 {
  padding: 110px calc((100% - 1200px) / 2) 110px;
  background: url(images/top_box01_bg.png) top 150px left 228px no-repeat;
}
.top_box01 .top_box01_tit {
  font-size: 3.3rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #3fc1ed;
}
@media print, screen and (min-width: 768px) {
  .top_box01 {
    line-height: 1.95;
  }
  .top_box01 .top_box01_txt {
    max-width: 585px;
    margin-left: auto;
    margin-bottom: 15px;
  }
  .top_box01 figure {
    margin-left: 50px;
    margin-right: 15px;
  }
}
.top_box01 .top_box01_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 38px;
}
@media print, screen and (min-width: 768px) {
  .top_box01 .top_box01_bnr {
    max-width: 1160px;
    margin: 0 auto;
  }
}

.top_box02 {
  padding: 120px 0 95px;
  padding: 120px 0 100px;
}
.top_box02 .top_box02_tit {
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #6f6f6f;
  margin-bottom: 45px;
  text-align: center;
}
.top_box02 .top_box02_tit span {
  font-size: 5.5rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  display: block;
  color: #3fc1ed;
}
.top_box02 .top_box02_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top_box02 .top_box02_bnr .top_box02_bnr_parts {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .top_box02 .top_box02_bnr .top_box02_bnr_parts {
    width: 33.3333333333%;
    height: 440px;
  }
}
.top_box02 .top_box02_bnr .top_box02_bnr_parts > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top_box02 .top_box02_bnr .top_box02_bnr_parts:hover > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top_box02 .top_box02_bnr .top_box02_bnr_parts:hover .top_box02_bnr_txt {
  opacity: 0.85;
}
.top_box02 .top_box02_bnr .top_box02_bnr_parts .top_box02_bnr_txt {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(210, 233, 177, 0.4);
  border-radius: 20px;
  margin: 35px;
  color: #FFF;
  text-align: center;
  padding: 0 10px;
}
.top_box02 .top_box02_bnr .top_box02_bnr_parts .top_box02_bnr_txt .top_box02_bnrtit {
  font-size: 4.2rem;
  letter-spacing: -0.02em;
  font-weight: bold;
  line-height: 1.2;
  color: #FFF;
  text-align: center;
}
.top_box02 .top_box02_bnr .top_box02_bnr_parts .top_box02_bnr_txt .bnr_num {
  position: absolute;
  top: -35px;
  left: 5px;
  width: auto;
  color: #3fc1ed;
  font-size: 13rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  font-family: "Times New Roman", serif;
}

.blue_bg {
  background: rgba(63, 193, 237, 0.15);
  padding-bottom: 50px;
}

.top_box_tit {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #82c12c;
}

.top_box03, .top_box05 {
  position: relative;
}
.top_box03 .top_box_txt, .top_box05 .top_box_txt {
  max-width: 750px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.24);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.24);
  padding: 60px 58px 65px;
  background: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media print, screen and (min-width: 768px) {
  .top_box03 .top_box_txt, .top_box05 .top_box_txt {
    position: absolute;
    right: 20%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    min-height: 520px;
    margin-top: 5px;
  }
}
@media print, screen and (max-width: 1530px) and (min-width: 768px) {
  .top_box03 .top_box_txt, .top_box05 .top_box_txt {
    right: 7%;
  }
}
.top_box03 .top_box_txt:before, .top_box05 .top_box_txt:before {
  content: "Certified Hearing Aid Consultant";
  color: #3fc1ed;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-family: "Times New Roman", serif;
  position: absolute;
  right: -60px;
  top: 30px;
}
@media print, screen and (min-width: 768px) {
  .top_box03 .top_box_txt:before, .top_box05 .top_box_txt:before {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    white-space: pre;
    text-orientation: sideways;
  }
}
@media print, screen and (min-width: 768px) {
  .top_box03, .top_box05 {
    margin-bottom: 75px;
  }
  .top_box03 figure, .top_box05 figure {
    height: 620px;
    margin-right: auto;
    width: 54.2%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1530px) and (min-width: 768px) {
  .top_box03 figure, .top_box05 figure {
    width: 45%;
  }
}
@media print, screen and (min-width: 768px) {
  .top_box03 figure > img, .top_box05 figure > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

@media print, screen and (max-width: 1530px) and (min-width: 768px) {
  .top_box03 figure img {
    -o-object-position: 70% 100%;
       object-position: 70% 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .top_box05 .top_box_txt {
    padding: 95px 58px 45px;
  }
}
.top_box05 .top_box_txt:before {
  content: "For Scuba Divers";
}
@media print, screen and (max-width: 1530px) and (min-width: 768px) {
  .top_box05 figure img {
    -o-object-position: 35% 100%;
       object-position: 35% 100%;
  }
}

.top_box04 {
  position: relative;
}
.top_box04 .top_box_txt {
  max-width: 750px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.24);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.24);
  padding: 90px 58px 95px;
  background: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media print, screen and (min-width: 768px) {
  .top_box04 .top_box_txt {
    position: absolute;
    left: 15%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    min-height: 520px;
    margin-top: 5px;
  }
}
@media print, screen and (max-width: 1530px) and (min-width: 768px) {
  .top_box04 .top_box_txt {
    left: 7%;
  }
}
.top_box04 .top_box_txt:before {
  content: "For Those Suffering from Hay Fever";
  color: #3fc1ed;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-family: "Times New Roman", serif;
  position: absolute;
  left: -50px;
  top: 30px;
}
@media print, screen and (min-width: 768px) {
  .top_box04 .top_box_txt:before {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    white-space: pre;
    text-orientation: sideways;
  }
}
@media print, screen and (min-width: 768px) {
  .top_box04 {
    margin-bottom: 75px;
  }
  .top_box04 .top_box_tit {
    margin-bottom: 35px;
  }
  .top_box04 figure {
    height: 620px;
    margin-left: auto;
    width: 59.3%;
  }
  .top_box04 figure > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1530px) and (min-width: 768px) {
  .top_box04 figure > img {
    -o-object-position: 25% 100%;
       object-position: 25% 100%;
  }
}

.top_box06 {
  position: relative;
  padding: 130px calc((100% - 1200px) / 2) 140px;
  background: #f2f9e8;
}
.top_box06 .top_box06_tit {
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #6f6f6f;
  margin-bottom: 30px;
  text-align: center;
}
.top_box06 .top_box06_tit span {
  font-size: 5.5rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  display: block;
  color: #82c12c;
}
.top_box06 .top_box06_inner {
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.24);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.24);
  border-radius: 15px;
  padding: 20px 14px 20px 44px;
  margin-bottom: 50px;
}

.top_box07 {
  padding: 100px calc((100% - 1200px) / 2) 105px;
}
.top_box07 .top_box07_tit {
  font-size: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #d0eea5;
  margin-bottom: 45px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}
.top_box07 .top_box07_tit span {
  font-size: 3.3rem;
  letter-spacing: 0.06em;
  font-weight: bold;
  color: #696969;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .top_box01 {
    padding: 30px 10px 20px;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
    background: url(images/top_box01_bg.png) top 50px left -2% no-repeat;
  }
  .top_box01 .top_box01_tit {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .top_box01 .top_box01_txt {
    margin-bottom: 20px;
  }
  .top_box01 .top_box01_bnr {
    gap: 4%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top_box01 .top_box01_bnr a {
    width: 48%;
    margin-bottom: 10px;
  }
  .top_box01 figure {
    width: 80%;
    margin-left: 4%;
  }
  .top_box02 {
    padding: 50px 10px 50px;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
  }
  .top_box02 .top_box02_tit {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .top_box02 .top_box02_tit span {
    font-size: 4rem;
  }
  .top_box02 .top_box02_bnr {
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
    background-size: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top_box02 .top_box02_bnr .top_box02_bnr_parts {
    width: 100%;
  }
  .top_box02 .top_box02_bnr .top_box02_bnr_parts > img {
    height: 140px;
    height: 250px;
    -o-object-position: 50% 86%;
       object-position: 50% 86%;
  }
  .top_box02 .top_box02_bnr .top_box02_bnr_parts .btn03 {
    margin-top: 15px;
  }
  .top_box02 .top_box02_bnr .top_box02_bnr_parts .top_box02_bnr_txt {
    margin: 25px;
  }
  .top_box02 .top_box02_bnr .top_box02_bnr_parts .top_box02_bnr_txt .top_box02_bnrtit {
    font-size: 2.8rem;
    margin: 15px 0 15px;
  }
  .top_box02 .top_box02_bnr .top_box02_bnr_parts .top_box02_bnr_txt .bnr_num {
    top: -30px;
    font-size: 10rem;
  }
  .blue_bg {
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
    padding: 0 10px;
  }
  .top_box_tit {
    font-size: 2.1rem;
    margin-bottom: 15px;
  }
  .top_box03, .top_box05 {
    padding: 40px 0px 40px;
  }
  .top_box03 .top_box_tit span, .top_box05 .top_box_tit span {
    display: block;
  }
  .top_box03 .top_box_txt, .top_box05 .top_box_txt {
    padding: 35px 15px;
  }
  .top_box03 .top_box_txt:before, .top_box05 .top_box_txt:before {
    font-size: 2rem;
    left: 10px;
    top: 0px;
  }
  .top_box04 {
    padding: 40px 10px 0px;
    width: calc(100% + 20px);
    margin: 0 0 40px -10px;
  }
  .top_box04 .top_box_txt {
    padding: 35px 15px;
  }
  .top_box04 .top_box_txt:before {
    font-size: 2rem;
    left: 10px;
    top: 0px;
  }
  .top_box06 {
    padding: 30px 15px 45px;
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
  }
  .top_box06 .top_box06_tit {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .top_box06 .top_box06_tit span {
    font-size: 4.4rem;
  }
  .top_box06 .top_box06_inner {
    padding: 15px 15px 20px;
    margin-bottom: 35px;
  }
  .top_box07 {
    padding: 30px 0px 70px;
  }
  .top_box07 .top_box07_tit {
    font-size: 3.8rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .top_box07 .top_box07_tit span {
    font-size: 2.6rem;
  }
}
/****************************************

content下層用（共通パーツ）

*****************************************/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.img_wauto {
  width: auto;
  max-width: 100%;
}

.img_radius {
  overflow: hidden;
  border-radius: 20px;
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pt_txt {
  padding-top: 25px;
}

.f16_txt p, .f16_txt li {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
}

.txt680 {
  width: 680px;
}

.txt700 {
  width: 700px;
}

.txt720 {
  width: 720px;
}

.w1000 {
  width: 1000px;
  margin: 0 auto;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}

.gray_bg {
  padding: 45px 30px 40px;
  background-color: rgba(238, 238, 238, 0.46);
}
.gray_bg dt {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .flex,
  .flex_r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .radius_img {
    width: 100%;
  }
  .pt_txt {
    padding-top: 0;
  }
  .txt700, .txt720, .txt680, .txt860, .w1000, .w1200 {
    width: 100%;
  }
  .gray_bg {
    padding: 25px 20px 25px;
  }
  .gray_bg dt {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .mb20_sp {
    margin-bottom: 20px;
  }
  figcaption {
    font-size: 1.4rem;
  }
}
/****************************************

content下層用

*****************************************/
/* 02診療方針 */
@media print, screen and (min-width: 768px) {
  .policy_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* 05医院概要 */
.overview_box {
  border: 10px solid rgba(63, 193, 237, 0.15);
  padding: 30px 40px 40px;
}
@media print, screen and (min-width: 768px) {
  .overview_box .calender_table_txt {
    width: 520px;
  }
}
.overview_box .calender_table_txt li {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.overview_box .flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  /* 03院長挨拶 */
  .greeting_img {
    text-align: center;
  }
  .greeting_img img {
    max-width: 250px;
  }
  /* 05医院概要 */
  .overview_box {
    border: 8px solid rgba(63, 193, 237, 0.15);
    padding: 35px 10px 25px;
  }
  .overview_box .calender_table_txt li {
    font-size: 1.4rem;
  }
  /* 11スキューバダイビングをされている方へ */
  .scuba_diving_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2%;
  }
  .scuba_diving_img img {
    width: 49%;
    margin-bottom: 0;
  }
}
/****************************************

content下層用（共通レイアウト）

*****************************************/
/* お問い合わせ */
#mail_form {
  padding: 0 calc((100% - 1200px) / 2);
}
@media print, screen and (min-width: 768px) {
  #mail_form {
    margin: 0 auto 120px;
    text-align: center;
  }
}

/* 3列flex(txt) */
.three_column_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.three_column_flex .three_column_parts {
  width: 380px;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  .three_column_flex .three_column_parts:not(:nth-child(3n)) {
    margin-right: 30px;
  }
}
.three_column_flex .three_column_parts img {
  margin-bottom: 15px;
}
.three_column_flex .three_column_parts h3 {
  margin-bottom: 15px;
  text-align: center;
}

/* FAQ共通(bg色+ラベル展開) */
.faq_box .faq_answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .faq_box .faq_answer .faq_txt {
    width: 1080px;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
.faq_box {
  /* クリックで非表示 */
  /*ラベル*/
}
.faq_box label {
  display: block;
  cursor: pointer;
  position: relative;
}
.faq_box {
  /*チェックボックスを非表示にする*/
}
.faq_box input {
  display: none;
}
.faq_box {
  /*中身を非表示にしておく*/
}
.faq_box .faq_answer {
  height: 0;
  opacity: 0;
}
.faq_box {
  /*クリックで中身を表示*/
}
.faq_box input:checked + label + div {
  height: auto;
  overflow-y: hidden;
  opacity: 1;
  -webkit-transition: 0.8s;
  transition: 0.8s; /*ゆっくり表示させる*/
}
.faq_box {
  /*アイコン（矢印-下∨）*/
}
.faq_box label::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 0px;
  border-top: solid 3px #89c932; /*カテゴリ矢印*/
  border-right: solid 3px #89c932; /*カテゴリ矢印*/
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: absolute;
  top: 16px;
  right: 22px;
  z-index: 2;
}
.faq_box {
  /*クリックでアイコン変更（矢印-上∧）*/
}
.faq_box input:checked + label::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  top: 22px;
}
.faq_box {
  /* アイコン背景色 */
}
.faq_box label > span {
  background: #FFF;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  width: 30px;
  height: 30px;
  z-index: 0;
  border-radius: 100%;
}

/* FAQ共通(アイコン-背景色) */
.faq_box .faq_tit {
  font-size: 2.2rem;
  font-weight: bold;
  color: #82c12c;
  color: #FFF;
  background: #82c12c;
  padding: 0 40px 1px;
  line-height: 1.2;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
.faq_box .faq_tit .faq_icon {
  width: auto;
}
.faq_box .faq_icon {
  font-size: 2.5rem;
  font-weight: bold;
  padding-bottom: 2px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 40px;
  border-radius: 10px;
}
.faq_box .faq_answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .faq_box .faq_answer {
    padding-left: 25px;
  }
}
.faq_box .faq_answer .faq_icon {
  background: #3fc1ed;
  color: #FFF;
}
.faq_box .faq_answer .faq_txt {
  padding-top: 5px;
  padding-bottom: 40px;
}

/* リスト共通（画像付きマーカー） */
@media screen and (max-width: 767px) {
  .three_column_flex .three_column_parts {
    width: 100%;
    margin-bottom: 30px;
  }
  /* FAQ共通(bg色+ラベル展開)-sp */
  .faq_box {
    /*アイコン*/
  }
  .faq_box label::before {
    right: 20px;
    top: 11px;
  }
  .faq_box {
    /* アイコン背景色 */
  }
  .faq_box label span {
    width: 25px;
    height: 25px;
  }
  /* FAQ共通sp（丸付） */
  .faq_box .faq_tit {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 1px 60px 2px 10px;
    margin-bottom: 15px;
  }
  .faq_box .faq_icon {
    font-size: 2rem;
    min-width: 40px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .faq_box .faq_answer {
    padding-left: 5px;
  }
  .faq_box .faq_answer .faq_txt {
    padding-bottom: 30px;
  }
}
/****************************************

sidebar/aside（テキスト）

*****************************************/
.bottom_box {
  padding: 50px calc((100% - 765px) / 2) 50px;
  background: url(images/bottom_box_bg.jpg) bottom center no-repeat;
  background-size: cover;
}
@media print, screen and (min-width: 768px) {
  .bottom_box {
    text-align: center;
    line-height: 2.2;
  }
}

.bottom_box_tit {
  font-size: 5.8rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.075em;
  margin-bottom: 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bottom_box_tit span {
  font-size: 1.8rem;
  padding-top: 5px;
}

.bottom_box_txt {
  margin-bottom: 30px;
  color: #FFF;
}

.bottom_box_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

a.bottom_box_tel {
  display: block;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  background: #FFF;
  padding: 16px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #82c12c;
}
a.bottom_box_tel:before {
  content: "";
  background: url(images/icon_tel.svg) no-repeat;
  background-size: contain;
  width: 23px;
  height: 30px;
  margin-right: 10px;
}
@media print, screen and (min-width: 768px) {
  a.bottom_box_tel {
    word-break: keep-all;
    width: 350px;
  }
}

@media screen and (max-width: 767px) {
  .bottom_box {
    padding: 45px 10px 45px;
  }
  .bottom_box_tit {
    font-size: 4.4rem;
    margin-bottom: 25px;
  }
  .bottom_box_tit span {
    font-size: 1.6rem;
  }
  .bottom_box_txt {
    margin-bottom: 25px;
  }
  .bottom_box_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom_box_btn .bottom_box_tel, .bottom_box_btn .contact_btn {
    width: 80%;
  }
  .bottom_box_btn a.bottom_box_tel {
    font-size: 2.9rem;
    padding: 16px 15px;
    margin: 0 auto 15px;
  }
  .bottom_box_btn a.bottom_box_tel:hover {
    background: rgba(255, 255, 255, 0.75);
  }
}
/****************************************

テーブル

*****************************************/
table {
  line-height: 1.7;
}

td p {
  font-size: 100%;
}

.calender_bg {
  background: #fdfffb;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.06);
  padding: 20px 35px 30px;
  max-width: 630px;
  border-radius: 15px;
}

/* ヘッダー,フッター */
@media print, screen and (min-width: 768px) {
  .calender_table {
    width: 560px;
  }
}
.calender_table {
  border-collapse: collapse;
}
.calender_table th {
  width: 10%;
  line-height: 1.2;
  padding: 11px 12px 12px;
  font-weight: 500;
  border-bottom: 1px solid #9b9b9b;
  text-align: center;
  vertical-align: middle;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.calender_table thead th {
  color: #82c12c;
}
.calender_table thead th:first-child {
  width: 22%;
  text-align: center;
}
.calender_table thead th:last-child {
  width: 12.5%;
}
@media print, screen and (min-width: 768px) {
  .calender_table thead th:last-child {
    padding: 11px 9px 12px;
  }
}
.calender_table tbody th {
  width: 22%;
  font-weight: 500;
  letter-spacing: 0.05em;
  word-break: keep-all;
  text-align: left;
}
.calender_table td {
  width: 10%;
  line-height: 1.2;
  padding: 11px 10px 12px;
  font-weight: 500;
  color: #93928c;
  border-bottom: 1px solid #9b9b9b;
  text-align: center;
  vertical-align: middle;
}
.calender_table td:last-child {
  width: 12.5%;
}
.calender_table td .green {
  font-size: 1.8rem;
}
.calender_table caption {
  caption-side: bottom;
  text-align: left;
  padding-top: 10px;
  padding-left: 2px;
}
.calender_table caption li {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.calender_table caption .green_line {
  border-bottom: 1px dashed #82c12c;
  display: inline-block;
}

/* 表2列(下線) */
.overview_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.3;
  /* 下線 */
}
.overview_table tr {
  border-bottom: 1px solid #32421c;
}
.overview_table th {
  width: 25%;
  padding: 32px 110px 14px;
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.06em;
}
.overview_table td {
  width: 75%;
  padding: 32px 0px 14px;
  vertical-align: middle;
  letter-spacing: 0.06em;
}
.overview_table td a {
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  /* 1列（下線） */
  .overview_table {
    width: 100%;
  }
  .overview_table th {
    display: block;
    width: 100%;
    padding: 15px 15px 5px;
    font-size: 1.6rem;
    text-align: left;
  }
  .overview_table td {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    padding: 0px 15px 15px;
  }
  .overview_table td a {
    line-height: 1.4;
  }
  .calender_bg {
    width: 96%;
    padding: 18px 10px;
    margin: 20px auto 0;
  }
  .calender_table {
    width: 100%;
    overflow-x: auto;
    height: auto;
  }
  .calender_table th {
    padding: 6px 3px;
    font-size: 1.4rem;
    line-height: 1.4;
    width: 9%;
  }
  .calender_table thead th:first-child {
    width: 23.5%;
  }
  .calender_table tbody th {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
  .calender_table td {
    width: 9%;
    padding: 6px 5px;
    font-size: 1.3rem;
  }
  .calender_table td .green {
    font-size: 1.6rem;
  }
  .calender_table caption li {
    font-size: 1.4rem;
  }
}
/****************************************

共通div

*****************************************/
.mb110 {
  margin-bottom: 110px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb10 {
  margin-bottom: 10px;
}

.mt40 {
  margin-top: 40px;
}

.mt30 {
  margin-top: 30px;
}

.mt20 {
  margin-top: 20px;
}

.mt10 {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mb110,
  .mb100,
  .mb95,
  .mb90,
  .mb85,
  .mb80,
  .mb75,
  .mb70,
  .mb65,
  .mb60,
  .mb55 {
    margin-bottom: 50px;
  }
  .mb50 {
    margin-bottom: 40px;
  }
  .mb45,
  .mb40 {
    margin-bottom: 30px;
  }
}
/****************************************

P

*****************************************/
/* 改行 */
.line_break {
  padding-top: 30px;
}

/* 配置 */
.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

@media print, screen and (min-width: 768px) {
  .txt_center_pc {
    text-align: center;
  }
}
/* 赤文字*/
.red {
  color: #FF0000;
}

/* 強調*/
.bold {
  font-weight: bold;
}

.green {
  color: #82c12c;
}

.blue {
  color: #3fc1ed;
}

.gray {
  color: #CCC;
}

.big {
  font-size: 1.8rem;
}

.big_20 {
  font-size: 2rem;
}

.big_22 {
  font-size: 2.2rem;
}

/* 小文字*/
.small {
  font-size: 1.2rem;
}

.small_14 {
  font-size: 1.4rem;
}

.small_15 {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .big {
    font-size: 1.6rem;
  }
  .big_20 {
    font-size: 1.8rem;
  }
  .big_22 {
    font-size: 2rem;
  }
}
/****************************************

news トップ用（テキスト標準）

*****************************************/
#news_top {
  width: 100%;
  height: auto;
  overflow-y: scroll;
  height: 300px;
  padding: 0px 25px 0px 0px;
}

.news_top_parts {
  padding: 42px 10px 22px 18px;
  border-bottom: 1px dotted #9b9b9b;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  position: relative;
}
.news_top_parts time {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  word-break: keep-all;
  color: #7ccbed;
  line-height: 1.2;
  margin-right: 35px;
}
.news_top_parts a {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}
.news_top_parts a:hover {
  color: #82c12c;
}
.news_top_parts .news_top_tit {
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.news_top_parts p {
  font-size: inherit;
}

@media screen and (max-width: 767px) {
  #news_top {
    width: 100%;
    height: 260px;
    padding: 0px 15px 0px 0px;
  }
  #news_top .news_top_parts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.4rem;
    padding: 15px 10px 15px 10px;
    line-height: 1;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  #news_top .news_top_parts time {
    font-size: 1.4rem;
  }
  #news_top .news_top_parts .news_top_tit {
    font-size: 1.4rem;
    margin-top: 5px;
  }
  #news_top .news_top_parts a {
    font-size: 1.4rem;
  }
}
/****************************************

投稿 下層用（1行）

*****************************************/
/* デフォルト投稿 */
.post_banner p {
  margin-left: auto;
}

@media print, screen and (min-width: 768px) {
  .news_post_parts .flex {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .news_post_parts figure {
    width: 440px;
    height: 330px;
    overflow: hidden;
    margin-right: 40px;
  }
  .news_post_parts figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .news_post_parts img {
    max-width: 100%;
    height: auto;
  }
  .news_post_parts .subhead01 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .news_post_parts {
    padding: 20px 20px 20px;
    border: 2px solid rgba(130, 193, 44, 0.5);
  }
  .news_post_parts figure {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .news_post_parts figure img {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .news_post_parts .subhead01 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
/****************************************

投稿 下層用2（複数列）

*****************************************/
/* 3列投稿 */
.three_column_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.three_column_post .three_column_parts {
  width: 380px;
  height: auto;
  margin: 0 30px 50px 0;
}
.three_column_post .three_column_parts .tag {
  background: #ddd;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 12px 12px;
  text-align: center;
  word-break: keep-all;
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .three_column_post .three_column_parts .tag {
    min-width: 200px;
  }
}
.three_column_post .three_column_parts {
  /* ボタンある場合 */
}
.three_column_post .three_column_parts .btn02 {
  margin: 20px auto 0px;
}
@media print, screen and (min-width: 768px) {
  .three_column_post .three_column_parts:nth-child(3n) {
    margin-right: 0;
  }
}
.three_column_post .three_column_parts .three_column_img {
  margin-bottom: 25px;
}
.three_column_post .three_column_parts .three_column_img figure {
  width: 100%;
  height: 285px;
  overflow: hidden;
}
.three_column_post .three_column_parts .three_column_img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: cover;";
}
.three_column_post .three_column_parts .three_column_txt img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  /* 3列投稿 sp*/
  .three_column_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .three_column_post .three_column_parts {
    width: 49%;
    margin: 0 2% 20px 0;
  }
  .three_column_post .three_column_parts:nth-child(2n) {
    margin-right: 0;
  }
  .three_column_post .three_column_parts:last-child {
    margin: 0 auto; /* 最終行中央揃え（画像数が奇数の場合）*/
  }
  .three_column_post .three_column_parts .three_column_img {
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
  }
  .three_column_post .three_column_parts .three_column_img figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .three_column_post .three_column_parts .three_column_img figure img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-fit: contain;
       object-fit: contain;
    font-family: "object-fit: cover;";
  }
  .three_column_post .three_column_parts .btn02 {
    margin: 15px auto 0px;
    width: 100%;
  }
  .three_column_post .three_column_parts .btn02 a:after {
    display: none;
  }
}
/****************************************

single.php

*****************************************/
#single_box {
  padding: 0 calc((100% - 1000px) / 2);
}
#single_box img {
  max-width: 1000px;
  padding: 10px 0;
  height: auto;
}
#single_box figure {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}
#single_box figure img {
  max-width: 100%;
  height: auto;
}
#single_box .nav-below {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0 80px;
  font-size: 100%;
  text-align: center;
}
#single_box .nav-below a {
  padding: 0 10px;
  color: #82c12c;
}
#single_box .nav-below a:hover {
  color: rgba(63, 193, 237, 0.75);
}

.single_txt a {
  color: #82c12c;
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: -webkit-gradient(linear, left top, right top, from(#82c12c), to(#82c12c));
  background-image: linear-gradient(90deg, #82c12c, #82c12c); /* 線の色 */
  background-repeat: no-repeat;
  background-position: right bottom; /* 線の起点を左・下に設定 */
  background-size: 100% 1px; /* 線の横幅を100%にする */
  -webkit-transition: background-size 0.9s;
  transition: background-size 0.9s; /* 線を伸ばすアニメーション実行時間を指定（0.9秒かけて線の横幅を0から100%にする） */
}
.single_txt a:hover {
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  color: #82c12c;
}
.single_txt a {
  font-weight: 600;
}
.single_txt a:hover {
  color: rgba(130, 193, 44, 0.75);
}

@media screen and (max-width: 767px) {
  #single_box img {
    max-width: 100%;
    padding: 10px 0;
  }
}
/****************************************

投稿　pager設定

*****************************************/
.pager {
  clear: both;
  text-align: center;
  padding: 0;
  margin: 50px 0 0;
}

a.page-numbers {
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  background: rgba(63, 193, 237, 0.1);
  background: #FFF;
  border: solid 1px rgba(63, 193, 237, 0.5);
}

.pager .current {
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  color: rgb(255, 255, 255);
  background: #3fc1ed;
  border: solid 1px #3fc1ed;
}

@media screen and (max-width: 767px) {
  .single_box {
    width: 100%;
  }
  .pager {
    padding: 0px 0 30px;
  }
}
/****************************************

sp_footer

*****************************************/
@media screen and (max-width: 767px) {
  #pc_footer {
    display: none;
  }
  #sp_footer {
    padding: 0px 0 60px;
  }
  .sp_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    z-index: 4;
  }
  .sp_bnr div {
    position: relative;
    width: 33.3333333333%;
    background: #82c12c;
    background: #3fc1ed;
    border-top: 1px solid #FFF;
  }
  .sp_bnr div:not(:last-child) {
    border-right: 1px solid #FFF;
  }
  .sp_bnr div img {
    width: auto;
    height: 24px;
  }
  .sp_bnr div p {
    color: #FFF;
    font-size: 1.2rem;
    line-height: 1.1;
    text-align: center;
    font-weight: 500;
    font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .sp_bnr a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 2px 0;
  }
  .sp_footer_box {
    width: 100%;
    margin: 0 auto;
    padding: 30px 3% 20px;
    border-top: 1px solid #82c12c;
  }
  .sp_footer_box a {
    text-decoration: none;
  }
  .sp_footer_box .footer_logo {
    text-align: center;
  }
  .sp_footer_box .footer_logo a {
    display: inline-block;
    width: 90%;
    max-width: 400px;
    margin: 0px auto 20px;
  }
  .sp_footer_box .footer_txt {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .copyright {
    font-size: 1rem;
    text-align: center;
    background: #82c12c;
    color: #FFF;
    padding: 10px 0;
  }
}
/****************************************
pc_footer

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_footer {
    display: none;
  }
  .pagetop {
    position: fixed;
    z-index: 4;
    right: 10px;
    bottom: 85px;
  }
  #pc_footer {
    position: relative;
    background: url(images/footer_bg.jpg) bottom right;
    border-top: 1px solid #82c12c;
  }
  .footer_box {
    padding: 50px calc((100% - 1115px) / 2) 30px;
    border-bottom: 1px solid #82c12c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer_box .footer_left {
    text-align: left;
  }
  .footer_box a {
    text-decoration: none;
  }
  .footer_box p {
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  .footer_box .footer_logo {
    margin: 15px auto 30px;
  }
  .footer_box .footer_logo a {
    display: inline-block;
  }
  /* 横並び（階層無　1行詰） */
  .footer_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 2px auto 8px;
  }
  .footer_link li {
    padding: 0px 8px;
    position: relative;
    line-height: 1.6;
  }
  .footer_link li a {
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: 0.016em;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #4a3d2f;
  }
  .footer_link li {
    /* ページリンク間の装飾 */
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1530px) and (min-width: 768px) {
  .footer_link li a {
    font-size: 1.36rem;
    letter-spacing: 0em;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_link li a::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #3fc1ed;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footer_link li a:hover::after {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .footer_link li a:hover {
    color: #3fc1ed;
  }
  .footer_link li:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    top: 60%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0px;
    background: #4a3d2f;
  }
  .copyright {
    color: #FFF;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    text-align: center;
    background: #82c12c;
    padding: 10px 0;
    line-height: 1.2;
  }
}
/****************************************

Contact Form7

*****************************************/
/* フォームカラー */
.wpcf7 {
  width: 100%;
  text-align: left;
}

.wpcf7-form textarea {
  width: 100%;
  /*本文*/
  max-width: 100%;
  padding: 3px 5px;
  border: 1px solid rgba(63, 193, 237, 0.5);
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wpcf7-form select {
  width: auto;
  padding: 3px 5px;
  border: 1px solid rgba(63, 193, 237, 0.5);
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wpcf7-form input {
  padding: 10px;
  border: 1px solid rgba(63, 193, 237, 0.5);
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*ラジオボタン、チェックボタン*/
}

/* 送信ボタン */
.tc {
  text-align: center;
}

.wpcf7 .tc input[type=submit] {
  cursor: pointer;
  width: 410px;
  max-width: 100%;
  padding: 18px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px #82c12c solid;
  border-radius: 8px;
  background-color: #82c12c;
  color: #fff;
  font-size: 18px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 30px auto 0;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.wpcf7 .tc input[type=submit]:disabled {
  cursor: not-allowed;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #f8f8f8 !important;
  background-color: #f8f8f8 !important;
  color: #929292 !important;
}
.wpcf7 .tc input[type=submit]:hover {
  -webkit-box-shadow: 0 0 1px 1px rgba(130, 193, 44, 0.3);
          box-shadow: 0 0 1px 1px rgba(130, 193, 44, 0.3);
  background-color: rgba(130, 193, 44, 0.3);
  color: #82c12c;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.wpcf7 .tc input[type=submit]:focus {
  outline: 0;
  border: 1px #82c12c solid;
  -webkit-box-shadow: 0 0 2px 2px rgba(130, 193, 44, 0.5);
          box-shadow: 0 0 2px 2px rgba(130, 193, 44, 0.5);
}

.wpcf7-text {
  width: 100%;
}

/* 入力欄 */
.form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #ccc;
}

.form_label {
  width: 300px;
}
.form_label .required {
  display: inline-block;
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #cc0000;
  margin-right: 10px;
  border-radius: 3px;
}
.form_label .any {
  display: inline-block;
  color: #797979;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #d7d7d7;
  margin-right: 10px;
  border-radius: 3px;
}

.form_input {
  width: calc(100% - 300px);
}

.form_input_post {
  width: 180px;
}

.form_input_post_txt {
  color: #b20000;
  font-weight: normal;
  font-size: 1.3rem;
}

/* 住所 */
.form_row_post {
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #CCC;
}
.form_row_post .form_row_address_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.form_row_post .form_row_address_row .form_label {
  font-weight: normal;
}

.form_row.last_row {
  padding-bottom: 0;
  border-bottom: none;
}

.wpcf7 .form_input_post input[type=tel],
.wpcf7 .form_input input[type=email],
.wpcf7 .form_input input[type=tel],
.wpcf7 .form_input input[type=text],
.wpcf7 .form_input_post input[type=text],
.wpcf7 .form_input textarea {
  position: relative;
  border-left: 2px solid #82c12c;
}

.seireki input[type=text] {
  width: 130px;
  margin: 0 10px;
}

.month input[type=text] {
  width: 60px;
  margin: 0 10px;
}

.old {
  margin-left: 30px;
}
.old input[type=text] {
  width: 60px;
  margin: 0 10px;
}

/* フォームの装飾ここから */
/* チェックボックス */
.wpcf7 .form_input input[type=checkbox] {
  display: none;
}
.wpcf7 .form_input input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #82c12c;
  border-radius: 4px;
  background-color: #fefefe;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .form_input input[type=checkbox] + span:after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.35em;
  left: 0.44em;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #82c12c;
  border-right: 3px solid #82c12c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span {
  color: #6c5d2f;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:before {
  opacity: 1;
  border: 1px solid #82c12c;
  -webkit-box-shadow: 0 0 2px 2px rgba(130, 193, 44, 0.5);
          box-shadow: 0 0 2px 2px rgba(130, 193, 44, 0.5);
  background-color: #82c12c;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

/* ラジオボタン */
.wpcf7 .form_input input[type=radio] {
  display: none;
}
.wpcf7 .form_input input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.9em;
  font-size: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #82c12c;
  border-radius: 50%;
  background-color: #fefefe;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio]:checked + span:before {
  -webkit-box-shadow: 0 0 2px 2px rgba(130, 193, 44, 0.5);
          box-shadow: 0 0 2px 2px rgba(130, 193, 44, 0.5);
}
.wpcf7 .form_input input[type=radio]:checked + span:after {
  opacity: 1;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #82c12c;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

/* セレクト */
.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #82c12c;
  border-right: 1px solid #82c12c;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:focus-within::after {
  border-bottom: 1px solid #82c12c;
  border-right: 1px solid #82c12c;
}

.wpcf7 .form_input select {
  cursor: pointer;
  width: 250px;
  max-width: 100%;
  margin: 0;
  padding: 0.5em 3.5em 0.5em 1em;
  border: 1px solid #82c12c;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #fefefe;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(130, 193, 44, 0.7)), to(rgba(130, 193, 44, 0.7)));
  background-image: linear-gradient(90deg, rgba(130, 193, 44, 0.7), rgba(130, 193, 44, 0.7));
  background-position: 100% 0;
  background-size: 2em 3.5em;
  background-repeat: no-repeat;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease, outline 0.2s ease;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.wpcf7 .form_input select:-ms-expand {
  display: none;
}

.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 60%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* テキストフィールド フォーカス時 */
.wpcf7 .form_input input[type=text]:focus,
.wpcf7 .form_input input[type=tel]:focus,
.wpcf7 .form_input input[type=email]:focus,
.wpcf7 .form_input input[type=url]:focus,
.wpcf7 .form_input input[type=date]:focus,
.wpcf7 .form_input input[type=number]:focus,
.wpcf7 .form_input_post input[type=text]:focus,
.wpcf7 .form_input textarea:focus,
.wpcf7 .form_input_post input[type=tel]:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  -webkit-box-shadow: 0 0 1px 1px rgba(130, 193, 44, 0.3);
          box-shadow: 0 0 1px 1px rgba(130, 193, 44, 0.3);
}

.wpcf7 .form_input select:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  -webkit-box-shadow: 0 0 1px 1px rgba(130, 193, 44, 0.3);
          box-shadow: 0 0 1px 1px rgba(130, 193, 44, 0.3);
}

.wpcf7-response-output {
  font-size: 1.3em;
}

@media screen and (max-width: 767px) {
  .wpcf7-form textarea {
    width: 100% !important;
    /*本文*/
  }
  .wpcf7-form input {
    max-width: 100% !important;
    /*ラジオボタン、チェックボタン*/
  }
  .wpcf7-submit {
    width: 100%;
  }
  /* 入力欄 */
  .form_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 30px;
  }
  .form_label {
    width: 100%;
    margin-bottom: 10px;
  }
  .form_input {
    width: 100%;
  }
  /* 住所 */
  .form_row_post {
    padding: 0 0 20px 0;
  }
  .form_row_post .form_row_address_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .seireki input[type=text] {
    width: 75px;
    margin: 0 5px;
  }
  .month input[type=text] {
    width: 45px;
    margin: 0 5px;
  }
  .old {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .old input[type=text] {
    width: 45px;
    margin: 0 10px;
  }
  .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
    display: block;
  }
  .ajax-loader {
    width: auto;
  }
}
/****************************************

clearfix

*****************************************/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}

/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack */
/****************************************

追加

*****************************************/
.dn {
  display: none;
}

.pcn {
  display: none;
}

@media screen and (max-width: 767px) {
  .spn {
    display: none;
  }
  .pcn {
    display: block;
  }
}