@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 */
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 2;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

a img {
  border: none;
}

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

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
}

html, body {
  line-height: 1.7;
  /*text-align: justify;*/
  font-size: 10px;
  /*scroll-behavior: smooth;*/
  /*-webkit-overflow-scrolling: touch;*/
  font-weight: 400;
}

*:focus {
  outline: none;
}

a {
  display: inline-block;
  color: black;
  cursor: pointer;
}

a.opacity {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.opacity:hover {
  opacity: 0.65;
}

a.zoomin {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.zoomin:hover {
  -webkit-transform: scale(0.92, 0.92);
          transform: scale(0.92, 0.92);
}

a, a:hover {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  letter-spacing: 0.1em;
}

/*
p, dt, dd {
  overflow-wrap: break-word;
}
*/
body {
  margin: auto;
}

small {
  font-size: 70%;
  color: grey;
}

/* 有効な変数名 */
/*--------------------------responsive ---------------------*/
.clearfix::before,
.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pci {
  display: inline-block !important;
}

.spi {
  display: none !important;
}

.pcf {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.spf {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .pci {
    display: none !important;
  }
  .spi {
    display: inline-block !important;
  }
  .pcf {
    display: none !important;
  }
  .spf {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/*--------------------------------------------------------------------------*/
/* Common
---------------------------------------------------------------------------------*/
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

p, td, label, div, ul, li, strong, input, a {
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}

p, label, div, strong, input {
  display: block;
}

/*
p {
  white-space: pre-line;
}
*/
.l_con,
.c_con,
.s_con {
  display: block;
  margin: auto;
  z-index: 0;
}

.l_con {
  width: 120rem;
}

.c_con {
  width: 100rem;
}

.s_con {
  width: 74rem;
}

.l_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.en {
  font-family: "Hind", sans-serif;
  font-weight: 700;
}

main {
  position: relative;
}

:root {
  --color1: #00A7EA;
  --color2: #6E6E6E;
  --color3: #DAAB66;
  --color4: #30BCA7;
  --color5: #FFF100;
  --color6: #696969;
  --color7: #CCDFE4;
  --color8: #EFFAFF;
}

/*---------------------------textalign----------------*/
.textCenter {
  text-align: center;
}

/*---------------------------img----------------*/
.img_full {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
}

.img_cover {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  -o-object-fit: contain;
     object-fit: contain;
}

/*---------------------------contents----------------*/
body {
  padding-top: 7rem;
}

#header {
  height: 7rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  background-color: #FFFFFF;
}
#header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .logo {
  width: 27.7rem;
  position: relative;
  z-index: 11;
}
#header .logo a {
  display: block;
}
#header .header_login {
  margin-left: auto;
  width: 12.4rem;
  height: 7rem;
}
#header .header_login a {
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #00A0A2;
  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-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 700;
}
#header .header_login a.logout {
  background-color: #F38200;
}
#header .header_login a.logout span {
  padding-left: 1.8rem;
}
#header .header_login a.logout span:before {
  background: url(../images/common/icon_logout.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 1.5rem;
  height: 1.3rem;
}
#header .header_login a.logout:hover {
  background-color: #D17000;
}
#header .header_login a span {
  position: relative;
  padding-left: 1.2rem;
  display: inline-block;
}
#header .header_login a span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/common/icon_login.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 0.8rem;
  height: 1.5rem;
}
#header .header_login a:hover {
  background-color: #007D80;
}

#menu_trigger {
  width: 7rem;
  height: 7rem;
  z-index: 11;
  cursor: pointer;
  position: relative;
}
#menu_trigger span {
  position: absolute;
  left: 2rem;
  top: 3.6rem;
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #707070;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#menu_trigger span:before {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -0.6rem;
  background-color: #707070;
}
#menu_trigger span:after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0.6rem;
  background-color: #707070;
}
#menu_trigger span:hover {
  opacity: 0.65;
}
#menu_trigger.is-open span {
  background: transparent;
}
#menu_trigger.is-open span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu_trigger.is-open span:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menu_content {
  display: none;
  background-color: #F4F7F7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 12;
  padding-top: 0;
}
#menu_content .menu_content_center {
  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;
  height: 100%;
}
#menu_content .menu_content_inner {
  width: 100rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#menu_content .menu_left {
  width: 21.8rem;
}
#menu_content .menu_left ul li {
  list-style: none;
  margin-bottom: 4.8rem;
}
#menu_content .menu_left ul li:last-child {
  margin-bottom: 0;
}
#menu_content .menu_left ul li a span {
  display: block;
  line-height: 1;
}
#menu_content .menu_left ul li a .en {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.8rem;
  text-transform: uppercase;
}
#menu_content .menu_left ul li a .en:before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background-color: #00A0A3;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
#menu_content .menu_left ul li a .jp {
  font-size: 3rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#menu_content .menu_left ul li a:hover .jp {
  color: #00A0A3;
}
#menu_content .menu_center {
  width: 44.7rem;
  border-left: 1px solid #D0D0D0;
  padding-left: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
#menu_content .menu_center ul li {
  list-style: none;
  margin-bottom: 2.2rem;
}
#menu_content .menu_center ul li:last-child {
  margin-bottom: 0;
}
#menu_content .menu_center ul li a {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#menu_content .menu_center ul li a:hover {
  color: #00A0A3;
}
#menu_content .menu_center .login_btn {
  margin-top: auto;
}
#menu_content .menu_center .login_btn a {
  width: 16rem;
  height: 5.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  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-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  background-color: #00A0A2;
}
#menu_content .menu_center .login_btn a:hover {
  background-color: #007D80;
}
#menu_content .menu_center .login_btn a.logout {
  background-color: #F38200;
}
#menu_content .menu_center .login_btn a.logout:hover {
  background-color: #D17000;
}
#menu_content .menu_right {
  width: 33.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
#menu_content .menu_right .okayama-kanko-link {
  margin-top: auto;
}
#menu_content .menu_right .okayama-kanko-link a {
  width: 100%;
  height: 9.2rem;
  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;
  background-color: #fff;
}
#menu_content .menu_right .okayama-kanko-link a img {
  width: 11rem;
  height: auto;
}
#menu_content .menu_right .okayama-japan-link {
  margin-top: 2rem;
}
#menu_content .menu_right .okayama-japan-link a {
  width: 100%;
  height: 9.2rem;
  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;
  background-color: #fff;
}
#menu_content .menu_right .okayama-japan-link a img {
  width: 25.1rem;
  height: auto;
}

@media screen and (max-width: 1220px) {
  #header .header_inner {
    padding-left: 2rem;
  }
}
#footer {
  background-color: #F0F9FA;
}
#footer .footer_inner {
  padding-top: 5.4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#footer .footer_left {
  width: 50rem;
}
#footer .footer_left_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#footer .footer_left_top .logo {
  width: 27.7rem;
}
#footer .footer_left_top .logo a {
  display: block;
}
#footer .footer_left_top .footer_login {
  margin-left: 3rem;
}
#footer .footer_left_top .footer_login a {
  width: 14rem;
  height: 4rem;
  color: #fff;
  background-color: #00A0A2;
  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-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 700;
}
#footer .footer_left_top .footer_login a span {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
}
#footer .footer_left_top .footer_login a span:after {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background: url(../images/common/arrow-white.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1rem;
}
#footer .footer_left_top .footer_login a:hover {
  background-color: #007D80;
}
#footer .footer_left_top .footer_login a.logout {
  background-color: #F38200;
}
#footer .footer_left_top .footer_login a.logout:hover {
  background-color: #D17000;
}
#footer .footer_left_bottom {
  margin-top: 6.5rem;
  height: 8.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#footer .footer_left_bottom a {
  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;
  background-color: #fff;
  height: 100%;
  width: 100%;
}
#footer .footer_left_bottom .okayama-kanko-link {
  width: 21.8rem;
}
#footer .footer_left_bottom .okayama-kanko-link img {
  width: 9.9rem;
}
#footer .footer_left_bottom .okayama-japan-link {
  width: 21.8rem;
  margin-left: 1.3rem;
}
#footer .footer_left_bottom .okayama-japan-link img {
  width: 19rem;
}
#footer .footer_right {
  width: 55.6rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .footer_right ul {
  border-top: 1px solid #D0D0D0;
  padding-top: 2rem;
  width: 15rem;
}
#footer .footer_right ul:nth-of-type(2) {
  width: 20rem;
}
#footer .footer_right ul li {
  list-style: none;
  padding-bottom: 1.5rem;
  line-height: 1;
}
#footer .footer_right ul li a {
  font-size: 1.5rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer .footer_right ul li a:hover {
  color: #00A0A3;
}
#footer small {
  display: block;
  text-align: center;
  background-color: #00A0A2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.75rem 0;
}

/*
@media screen and (max-width: 1400px) {
  html, body {
    font-size: calc(1000vw / 1400);
  }
}
*/
@media screen and (min-width: 768px) and (max-height: 400px) {
  #menu_content .menu_content_center {
    display: block;
  }
  #menu_content .menu_content_inner {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  body.is-open {
    overflow-y: hidden;
    width: 100%;
  }
  body.is-open #header {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  body.is-open #header .logo,
  body.is-open #header .header_login {
    opacity: 0;
  }
  .wrap {
    width: 100%;
    min-width: 120rem;
    overflow: hidden;
  }
  .header_inner {
    min-width: 120rem;
  }
  #menu_content {
    min-width: 120rem;
  }
  #menu_content .menu_content_center {
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 2.6666666667vw;
  }
  .l_con,
  .s_con,
  .c_con {
    width: 100%;
  }
  body {
    position: static;
  }
  body {
    padding-top: 5.4rem;
  }
  body.is-open {
    overflow: hidden;
    width: 100%;
    position: fixed;
  }
  body.is-open #header {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  body.is-open #header .header_login {
    opacity: 0;
  }
  #header {
    height: 5.4rem;
  }
  #header .header_inner {
    padding-left: 0;
  }
  #header .logo {
    margin-left: 20px;
    width: 21.1rem;
  }
  #header .header_login {
    width: 6.8rem;
    height: 5.4rem;
  }
  #header .header_login a {
    font-size: 1.2rem;
    line-height: 1.3;
    text-align: center;
  }
  #header .header_login a.logout span {
    padding-left: 0;
  }
  #header .header_login a span {
    padding-left: 0;
  }
  #header .header_login a span:before {
    display: none;
  }
  #menu_trigger {
    width: 5.4rem;
    height: 5.4rem;
  }
  #menu_trigger span {
    left: 1.5rem;
    top: 2.7rem;
    width: 2.4rem;
  }
  #menu_trigger span:before {
    top: -0.6rem;
  }
  #menu_trigger span:after {
    top: 0.6rem;
  }
  #menu_content {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    z-index: 10;
  }
  #menu_content .menu_content_center {
    display: block;
    height: 100%;
  }
  #menu_content .menu_content_inner {
    height: calc(100dvh - 5.7rem);
    overflow: auto;
    width: 100%;
    display: block;
    margin-top: 5.7rem;
    padding: 3.9rem 20px 0;
  }
  #menu_content .menu_left {
    width: 100%;
    padding-bottom: 3rem;
  }
  #menu_content .menu_left ul li {
    margin-bottom: 2.8rem;
  }
  #menu_content .menu_left ul li:last-child {
    margin-bottom: 0;
  }
  #menu_content .menu_left ul li a .en {
    padding-left: 1.8rem;
  }
  #menu_content .menu_left ul li a .en:before {
    width: 1rem;
    height: 1rem;
  }
  #menu_content .menu_left ul li a .jp {
    font-size: 2.4rem;
  }
  #menu_content .menu_center {
    width: 100%;
    border-left: none;
    border-top: 1px solid #D0D0D0;
    padding-left: 0;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }
  #menu_content .menu_center ul {
    padding-bottom: 3rem;
  }
  #menu_content .menu_center ul li {
    margin-bottom: 2rem;
  }
  #menu_content .menu_center ul li.sp_border {
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 2.6rem;
    margin-bottom: 2.8rem;
  }
  #menu_content .menu_center ul li:last-child {
    margin-bottom: 0;
  }
  #menu_content .menu_center ul li a {
    font-size: 1.8rem;
  }
  #menu_content .menu_center .login_btn a {
    width: 100%;
    height: 4.8rem;
  }
  #menu_content .menu_right {
    width: 100%;
    padding-bottom: 4rem;
  }
  #menu_content .menu_right .okayama-kanko-link {
    margin-top: auto;
  }
  #menu_content .menu_right .okayama-kanko-link a {
    height: 9.2rem;
  }
  #menu_content .menu_right .okayama-kanko-link a img {
    width: 11rem;
  }
  #menu_content .menu_right .okayama-japan-link {
    margin-top: 1.6rem;
  }
  #menu_content .menu_right .okayama-japan-link a {
    height: 9.2rem;
  }
  #menu_content .menu_right .okayama-japan-link a img {
    width: 25.1rem;
  }
  #footer .footer_inner {
    padding: 4.5rem 20px 24.4rem;
    position: relative;
  }
  #footer .footer_left {
    width: 100%;
  }
  #footer .footer_left_top {
    margin-bottom: 4rem;
  }
  #footer .footer_left_top .logo {
    width: 25.5rem;
    margin-bottom: 1.5rem;
  }
  #footer .footer_left_top .footer_login {
    margin-left: 0;
    width: 100%;
  }
  #footer .footer_left_top .footer_login a {
    width: 100%;
    height: 4.4rem;
    text-align: center;
  }
  #footer .footer_left_top .footer_login a span {
    display: inline-block;
    width: auto;
    padding-right: 2rem;
  }
  #footer .footer_left_top .footer_login a span:after {
    right: -2rem;
  }
  #footer .footer_left_bottom {
    margin-top: 0;
    height: auto;
    position: absolute;
    left: 20px;
    bottom: 4rem;
    width: calc(100% - 40px);
  }
  #footer .footer_left_bottom a {
    height: 9.2rem;
    width: 100%;
  }
  #footer .footer_left_bottom .okayama-kanko-link {
    width: 100%;
  }
  #footer .footer_left_bottom .okayama-kanko-link img {
    width: 11rem;
  }
  #footer .footer_left_bottom .okayama-japan-link {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
  #footer .footer_left_bottom .okayama-japan-link img {
    width: 25rem;
  }
  #footer .footer_right {
    width: 100%;
  }
  #footer .footer_right ul {
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }
  #footer .footer_right ul:nth-of-type(2) {
    width: 100%;
  }
  #footer .footer_right ul li {
    padding-bottom: 1.2rem;
  }
  #footer .footer_right ul li a {
    font-size: 1.5rem;
  }
  #footer small {
    padding: 0.75rem 0;
  }
}
.eyecatch {
  width: 100%;
  height: 28rem;
  background-color: #F0F9FA;
}
.eyecatch .eyecatch_inner {
  padding-top: 11.2rem;
  position: relative;
}
.eyecatch .eyecatch_txt span {
  display: block;
  line-height: 1;
}
.eyecatch .eyecatch_txt .en {
  font-size: 1.4rem;
  letter-spacing: 0;
  position: relative;
  padding-left: 1.8rem;
}
.eyecatch .eyecatch_txt .en:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background-color: #00A0A3;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.eyecatch .eyecatch_txt .jp {
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  margin-top: 0.7rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 750px) {
  .eyecatch {
    height: 20rem;
  }
  .eyecatch .eyecatch_inner {
    padding-top: 7.7rem;
    padding-left: 20px;
  }
  .eyecatch .eyecatch_txt .en {
    font-size: 1.2rem;
    padding-left: 1.2rem;
  }
  .eyecatch .eyecatch_txt .en:before {
    width: 0.8rem;
    height: 0.8rem;
  }
  .eyecatch .eyecatch_txt .jp {
    font-size: 3rem;
    letter-spacing: 0;
  }
}
.breadcrumb {
  position: absolute;
  top: 3rem;
  left: 0;
}
.breadcrumb ul li {
  list-style: none;
  font-size: 1.3rem;
  display: inline;
}
.breadcrumb ul li:after {
  content: "/";
  padding: 0 0.8rem;
}
.breadcrumb ul li:last-child:after {
  display: none;
}
.breadcrumb ul li a {
  color: #929292;
  font-size: 100%;
}

@media screen and (max-width: 750px) {
  .breadcrumb {
    top: 1.96rem;
    left: 20px;
  }
}
.wp-pagenavi {
  clear: both;
  text-align: center;
  padding-top: 4rem;
}
.wp-pagenavi a, .wp-pagenavi span {
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  padding: 0 0.8rem;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  color: #00A0A3;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  padding: 0;
  font-size: 0;
  width: 0.5rem;
  height: 0.8rem;
  background-image: url(../images/common/pager.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wp-pagenavi .previouspostslink {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-right: 1rem;
}
.wp-pagenavi .nextpostslink {
  margin-left: 1rem;
}

.arrow_btn {
  position: relative;
  overflow: hidden;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 1.2rem;
}
.arrow_btn:before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background: url(../images/common/arrow.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0.2rem;
  right: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow_btn:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow_btn:hover:before {
  right: 0;
}
.arrow_btn:hover:after {
  left: 100%;
}

@media screen and (max-width: 767px) {
  .arrow_btn {
    font-size: 1.4rem;
  }
}
.main_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  letter-spacing: 0;
}
.main_ttl:before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: #E0E0E0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.main_ttl:after {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background-color: #00A0A3;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .main_ttl {
    font-size: 2rem;
    padding-bottom: 1.4rem;
    margin-bottom: 3rem;
  }
}
.sub_ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 0.8rem;
  margin-bottom: 1.6rem;
  position: relative;
  letter-spacing: 0;
  border-left: 0.2rem solid #00A0A3;
}

@media screen and (max-width: 767px) {
  .sub_ttl {
    font-size: 2rem;
  }
}
.back-btn {
  position: relative;
  overflow: hidden;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 1.2rem;
  width: 16rem;
  margin: 0 auto;
  padding-left: 4.4rem;
}
.back-btn a {
  font-size: 100%;
}
.back-btn:before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  background: url(../images/common/arrow.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0.3rem;
  left: 0.4rem;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.back-btn:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.back-btn:hover:before {
  left: 0;
}
.back-btn:hover:after {
  right: 100%;
}

@media screen and (max-width: 767px) {
  .back-btn {
    font-size: 1.4rem;
  }
}

#menu_content .menu_block {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
}

#menu_content .menu_block .l_con {
	position: relative;
	margin: 0 auto;
}

#menu_content #menu_trigger {
	position: absolute;
	top: 0;
	right: 0;
}