@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: "Noto Serif JP", serif;
  --f-en: "Zen Maru Gothic", sans-serif;
  --main-color: #5188b2;
  --clr1: #343434;
  --clr2: #ccc;
  --ttl_size: 28px;
  --wrapper: 100px;
  --border-radius: 10px;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.1em;
  color: var(--clr1);
  font-family: var(--f-notosans);
}
body::-webkit-scrollbar {
  display: block;
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
  box-shadow: inset 0 0 6px #fff;
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 100%;
  -webkit-text-size-adjust: none;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure,
picture {
  display: block;
  padding: 0;
  margin: 0;
}

img {
  display: table;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a:not(.tel_click) {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: #64b5f7;
}
a.tel_click {
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  a:not([target*=_blank]) {
    transition: opacity 0.3s ease;
  }
  a:not([target*=_blank]):hover {
    opacity: 0.7;
  }
  a.tel_click {
    pointer-events: none;
  }
  a:not(.tel_click):hover, a:not(.tel_click):active {
    color: #64b5f7;
  }
}
a.logo:hover,
.logo a:hover,
a.ft_logo:hover,
.ft_logo a:hover,
a.tel_click:hover {
  opacity: 1 !important;
}

table {
  width: 100%;
}

iframe {
  width: 100%;
  height: 100%;
}

.captcha_box iframe {
  height: auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

p {
  line-height: 2.25;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  word-break: break-word;
  margin-bottom: 15px;
  color: #594945;
}
p:empty {
  display: none !important;
}
p:last-child {
  margin-bottom: 0;
}

.red {
  color: #ca0a0a !important;
}

.bold {
  font-weight: bold !important;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

*,
::after,
::before {
  box-sizing: border-box;
}

/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
html {
  overflow-x: auto !important;
}

.wrapper {
  padding-top: var(--wrapper);
  overflow: hidden;
}

.inner_max,
.inner_big,
.inner,
.inner_sm {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.inner_max {
  max-width: 1480px;
}

.inner_big {
  max-width: 1320px;
}

.inner {
  max-width: 1210px;
}

.inner_sm {
  max-width: 1020px;
}

.fullWidthBreak {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.txt_ver {
  writing-mode: vertical-rl;
}

.key::before, .key::after {
  position: absolute;
}
.key::before {
  content: "";
  top: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 95%;
  max-width: 1800px;
  height: 100%;
  border-top-left-radius: 200px;
}
@media only screen and (min-width: 1921px) {
  .key::before {
    max-width: 100%;
  }
}
.key::after {
  content: "© Mizuno Eye Clinic";
  font-size: 14px;
  letter-spacing: 0.2em;
  top: 18.3em;
  left: 0;
  color: #b8b8b8;
  writing-mode: sideways-rl;
  text-transform: uppercase;
  width: 5%;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 769px) {
  .txt_ver_pc {
    writing-mode: vertical-rl;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           WordPress Core                                 */
/*==========================================================================*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 35px;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*                              General                                     */
/*==========================================================================*/
@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.TabContainer .TabContent {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.TabContainer .TabContent .content {
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}
.TabContainer .TabContent .content > div {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.TabContainer .TabContent .content > div.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager {
  display: flex;
  justify-content: center;
  margin: 0px auto;
}
.TabContainer .TabPager > div {
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 26px 10px 30px;
  width: calc(50% - 0px);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #ffffff;
  position: relative;
}
.TabContainer .TabPager > div::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 30px);
  width: 1px;
  height: 60px;
  background-color: #8898ac;
}
.TabContainer .TabPager > div:first-child {
  border-top-left-radius: 20px;
}
.TabContainer .TabPager > div:first-child::before {
  display: none;
}
.TabContainer .TabPager > div:last-child {
  border-top-right-radius: 20px;
}
@media only screen and (max-width: 430px) {
  .TabContainer .TabPager > div:last-child {
    border: 0;
    width: 100%;
    border-radius: 0;
    border-top: 1px solid #8898ac;
  }
  .TabContainer .TabPager > div:last-child::before {
    display: none;
  }
}
.TabContainer .TabPager > div p {
  margin: 0;
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0.14em;
  color: #fff;
}
.TabContainer .TabPager > div:hover {
  background-color: #c06d55;
}
.TabContainer .TabPager > div.active {
  background-color: #edf2f7;
  z-index: 1;
}
.TabContainer .TabPager > div.active p {
  color: #5c89b9;
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .TabContainer .TabPager > div {
    padding: 20px 0;
  }
  .TabContainer .TabPager > div p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .TabContainer .TabPager > div {
    padding: 15px 0;
  }
  .TabContainer .TabPager > div::before {
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
  }
  .TabContainer .TabPager > div p {
    font-size: min(18px, 2.6vw);
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 430px) {
  .TabContainer .TabPager {
    flex-wrap: wrap;
  }
  .TabContainer .TabPager > div p {
    font-size: 16px;
  }
  .TabContainer .TabPager > div:nth-child(2) {
    border-radius: 0 20px 0 0;
  }
  .TabContainer .TabPager > div:nth-child(3)::before {
    display: none;
  }
  .TabContainer .TabPager > div:nth-child(4) {
    border-radius: 0 0 0 0;
  }
}

.rel {
  position: relative;
}

.ovh {
  overflow: hidden !important;
}

.ovs {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
}

.lt0 {
  letter-spacing: 0 !important;
}

figure,
picture {
  text-align: center;
  line-height: 1;
}

.fblock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.key {
  position: relative;
}

.txt_l {
  float: left;
  width: calc(100% - 385px);
}

.txt_r {
  float: right;
  width: calc(100% - 385px);
}

.link > a {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tel_click {
  display: table;
  text-decoration: none;
  color: #c06d55;
  font-family: var(--f-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.5em;
}
.tel_click .icon {
  display: flex;
  align-items: center;
}
.tel_click .icon::before {
  content: "";
  display: block;
  margin-right: 0.3214em;
  margin-top: 0.1786em;
  width: 0.893em;
  height: 0.893em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 101' %3E%3Cpath d='M97.829,82.824 C98.198,91.823 96.073,94.826 87.308,97.205 C74.144,100.791 61.788,98.752 50.561,91.066 C33.671,79.497 19.384,65.207 7.912,48.225 C-0.287,36.096 -1.826,22.855 2.769,8.952 C4.752,2.953 8.059,0.771 14.407,0.925 C23.639,1.157 23.633,1.157 26.561,10.079 C27.869,14.063 29.100,18.078 30.561,22.007 C32.367,26.859 31.432,30.918 27.914,34.711 C22.303,40.765 22.378,40.854 26.680,47.891 C33.854,59.628 43.600,68.580 55.717,75.040 C57.758,76.123 59.178,76.250 60.774,74.416 C62.051,72.951 63.620,71.738 65.076,70.429 C68.123,67.696 71.576,66.743 75.537,68.072 C82.013,70.255 88.532,72.319 94.923,74.723 C96.087,75.162 97.048,76.900 97.511,78.240 C97.992,79.641 97.756,81.285 97.829,82.824 Z'/%3E%3C/svg%3E");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--main-color);
}

.en {
  font-family: var(--f-en);
}

.btn a {
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.btn a span {
  position: relative;
  padding-right: 4em;
  padding-top: 0.33333333em;
}
.btn a span::before, .btn a span::after {
  position: absolute;
  content: "";
  width: 2.7777777778em;
  height: 2.7777777778em;
  border-radius: 50%;
  top: 0;
  right: 0;
}
.btn a span::before {
  background-color: #517dab;
}
.btn a span::after {
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='32px' height='20px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M31.1000,9.999 L17.778,19.999 L17.778,12.000 L0.000,12.000 L0.000,8.000 L17.778,8.000 L17.778,-0.000 L31.1000,9.999 Z'/%3E%3C/svg%3E");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 16px auto;
  -webkit-mask-size: 16px auto;
  mask-position: center;
  -webkit-mask-position: center;
  transition: all 0.3s;
  background-color: #fff;
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .btn a span {
    padding-right: 3.5em;
  }
}

@keyframes arrow-slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(100%);
    opacity: 0;
  }
  50% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 a {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  min-height: 50px;
  font-size: 1.8em;
  letter-spacing: 0.14em;
  line-height: 1.5;
  color: var(--clr1);
  text-align: center;
  transition: all 0.3s;
  overflow: hidden;
}
.btn-group .btn.style01 a::after {
  display: block;
  content: "";
  width: calc(100% - 4.1666666667em);
  height: 1px;
  background-color: #484848;
  margin-left: 0px;
  margin-right: auto;
  margin-top: 4px;
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .btn-group .btn.style01 a::after {
    width: calc(100% - 3.6em);
  }
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:hover {
    color: #c06d55;
  }
  .btn-group .btn.style01 a:hover::after {
    right: 0.5em;
    background-color: #c06d55;
  }
  .btn-group .btn.style01 a:hover span::after {
    animation: arrow-slide 0.8s forwards;
  }
  .btn-group .btn.style01 a:hover span::before {
    background-color: #c06d55;
  }
}
.btn-group .btn.bg01 a {
  background-color: #fff;
  color: var(--main-color);
}
.btn-group .btn.bg01 a::after {
  background-color: var(--main-color);
}
.btn-group.white .btn a {
  color: #fff;
}
.btn-group.white .btn a::after {
  background-color: #fff;
}
.btn-group.white .btn a span::before {
  background-color: #fff;
}
.btn-group.white .btn a span::after {
  background-color: var(--main-color);
}

.yt {
  max-width: 960px;
  margin: 0px auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-arrow {
  display: block;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  top: 37%;
  width: 2em;
  height: 2em;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
}
.slick-arrow:focus {
  outline: 0;
}

.slick-prev {
  left: -1em;
}

.slick-next {
  right: -1em;
}

/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 87.5%;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
h1 {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wrapper);
  z-index: 20;
}

header.active,
.ovh header {
  background-color: #fff;
}

.header_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  padding: 5px 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1025px) {
  .header_top {
    padding-left: 38px;
  }
}

.logo {
  width: 25%;
  max-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.right_head {
  width: 70%;
  max-width: 932px;
  padding-right: 164px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pc_navi {
  width: 100%;
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
}
.pc_navi > ul > li:hover > a,
.pc_navi > ul > li:hover > p {
  opacity: 0.8;
  color: var(--main-color);
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  background: url(../images/shared_pc_navi_arrow.png) center no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 6px;
  position: absolute;
  bottom: -7px;
  left: calc(50% - 4.5px);
  transition: all 0.5s ease;
  /*border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0px 6px;
  width: 0;
  height: 0;*/
}
.pc_navi > ul > li.menu-item-has-children > a:hover::after,
.pc_navi > ul > li.menu-item-has-children > p:hover::after {
  transform: translateY(5px);
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 40px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  transition: all 0.2s ease;
  color: var(--clr1);
}
.pc_navi > ul > li > a span,
.pc_navi > ul > li > p span {
  display: block;
  width: 100%;
  padding-top: 0px;
  font-size: 66.6666666667%;
  font-weight: 600;
}
.pc_navi > ul > li:hover a.title::after,
.pc_navi > ul > li:hover p.title::after {
  transform: translateY(5px);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 18em;
  right: 50%;
  bottom: -15px;
  padding-top: 0px;
  transform: translate(50%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: var(--main-color);
  padding-bottom: 10px;
}
.pc_navi > ul .subInner ul li {
  padding: 0 10px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: block;
  padding: 1.2em 0.6em 1.2em 1.6em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  font-size: 0.875em;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.05em;
}
.pc_navi > ul .subInner ul li a::before {
  content: "›";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.6em;
  transform: translateY(-54%);
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .logo {
    max-width: 190px;
  }
  .right_head {
    padding-right: min(100px, 9vw);
  }
  .pc_navi > ul > li > a,
  .pc_navi > ul > li > p {
    font-size: min(14px, 1.7vw);
  }
}
@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner {
    width: 500px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
    font-size: min(16px, 1.11vw);
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) and (min-width: 769px) {
  .menu_toggle .inside .ft_link {
    font-size: min(14px, 1.11vw);
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) and (min-width: 769px) {
  .menu_toggle .inside .ft_link {
    font-size: min(14px, 1.4vw);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 100px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  :root {
    --wrapper: 80px;
  }
  .pc_navi > ul {
    font-size: 1.4vw;
  }
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .pc_navi > ul > li:nth-child(4) .subInner {
    right: 125%;
  }
}
.idx_gallery {
  padding-top: 80px;
  position: relative;
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .idx_gallery .item {
    width: 300px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .idx_gallery .item {
    width: 250px;
  }
}

.time_sheet {
  margin: 0px auto;
}
.time_sheet .note {
  margin-top: 15px;
}
.time_sheet .note span {
  display: inline-block;
}
.time_sheet .dot {
  position: relative;
  padding: 0 0.4444444444em;
}
.time_sheet .dot::before {
  position: absolute;
  top: 0.8333333333em;
  left: 0.2777777778em;
  content: "";
  height: 1px;
  width: 0.2777777778em;
  background-color: #434444;
}
.time_sheet table {
  font-feature-settings: "palt";
}
.time_sheet table th,
.time_sheet table td {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-top: 0;
  border-bottom: 0;
  width: 10.35%;
  border-color: #cdd7e0;
  padding: 0;
  font-size: min(18px, 1.7vw);
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: auto;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 10.35%;
}
.time_sheet table td {
  color: #5c89b9;
}
.time_sheet table td:first-child {
  color: #333;
  letter-spacing: 0.05em;
}
.time_sheet table tr:first-child th {
  padding-top: 1em;
  padding-bottom: 1em;
}
.time_sheet table tr:nth-child(2) td {
  padding-top: 0.2777777778em;
  padding-bottom: 0.5555555556em;
}
.time_sheet table tr:nth-child(3) td {
  padding-top: 0.7222222222em;
  padding-bottom: 1.1111111111em;
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 80px;
  }
}
.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 10px;
  right: 10px;
  background-color: #517dab;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  border: 0px;
  margin: 0;
  background-color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15px' height='10px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M15.008,7.892 L13.908,9.018 L7.500,2.456 L1.092,9.018 L-0.008,7.892 L6.401,1.331 L6.212,1.138 L7.312,0.013 L7.500,0.206 L7.689,0.013 L8.788,1.138 L8.599,1.331 L15.008,7.892 Z'/%3E%3C/svg%3E");
  mask-position: center;
  mask-size: 15px auto;
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 769px) {
  .totop:hover {
    opacity: 0.9;
    animation-name: bounces;
  }
}
.bounce {
  animation-name: bounces;
}

.animateds {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes bounces {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes fixed_banner {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -3px;
    opacity: 0.7;
  }
}
.fixed_banner {
  position: fixed;
  top: 340px;
  right: 0px;
  z-index: 15;
  transition: right 0.3s ease-in-out;
}
.fixed_banner > div {
  position: relative;
  transition: all 0.3s ease;
}
.fixed_banner a {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.fixed_banner p {
  display: block;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2222222222;
  text-align: center;
  text-decoration: none;
}
.fixed_banner p:hover {
  color: #fff;
}
.fixed_banner p .tt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.fixed_banner p .tt::before {
  content: "";
  display: block;
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #fff;
}
.fixed_banner .tel p {
  background-color: #c06d55;
}
.fixed_banner .tel p .tt::before {
  width: 19px;
  height: 19px;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='19px' height='19px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M18.989,14.035 L18.989,17.667 C18.989,18.207 18.572,18.655 18.033,18.692 C17.584,18.723 17.218,18.740 16.934,18.740 C7.857,18.740 0.500,11.382 0.500,2.304 C0.500,2.021 0.515,1.654 0.547,1.205 C0.585,0.667 1.033,0.250 1.572,0.250 L5.204,0.250 C5.468,0.250 5.689,0.449 5.716,0.712 C5.739,0.948 5.761,1.136 5.781,1.279 C5.985,2.704 6.404,4.090 7.022,5.390 C7.120,5.595 7.056,5.839 6.871,5.971 L4.654,7.555 C6.010,10.714 8.526,13.231 11.684,14.586 L13.266,12.373 C13.400,12.187 13.647,12.122 13.855,12.220 C15.154,12.837 16.539,13.255 17.964,13.458 C18.106,13.479 18.294,13.501 18.528,13.523 C18.791,13.550 18.990,13.771 18.990,14.035 L18.989,14.035 Z'/%3E%3C/svg%3E");
}
.fixed_banner .web p {
  background-color: #2e9de9;
}
.fixed_banner .web p .tt::before {
  margin-bottom: 0.5em;
  width: 2em;
  height: 2em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 232 232 ' %3E%3Cpath d='M218.959,232.004 L13.039,232.004 C5.931,232.004 0.169,226.540 0.169,219.806 L0.169,49.115 C0.169,42.374 5.931,36.917 13.039,36.917 L51.648,36.917 L51.648,12.533 C51.648,5.799 57.410,0.348 64.518,0.348 C71.626,0.348 77.388,5.799 77.388,12.533 L77.388,36.917 L154.608,36.917 L154.608,12.533 C154.608,5.799 160.370,0.348 167.478,0.348 C174.586,0.348 180.348,5.799 180.348,12.533 L180.348,36.917 L206.089,36.917 L218.959,36.917 C226.069,36.917 231.829,42.374 231.829,49.115 L231.829,219.806 C231.829,226.540 226.069,232.004 218.959,232.004 ZM106.345,141.603 L83.269,119.752 C78.243,114.984 70.098,114.984 65.071,119.752 C60.043,124.508 60.043,132.228 65.071,136.983 L97.246,167.469 C99.659,169.750 102.934,171.045 106.345,171.045 C109.758,171.045 113.032,169.750 115.445,167.469 L166.925,118.702 C171.953,113.940 171.953,106.214 166.925,101.452 C161.898,96.690 153.753,96.690 148.726,101.452 L106.345,141.603 Z'/%3E%3C/svg%3E");
}
.fixed_banner .mail p {
  background-color: #fff;
  color: #c06d55;
}
.fixed_banner .mail p .tt::before {
  width: 18px;
  height: 15px;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='36px' height='30px'%3E%3Cpath fill-rule='evenodd' fill='rgb(192, 109, 85)' d='M1.797,-0.002 L34.193,-0.002 C35.188,-0.002 35.993,0.757 35.993,1.690 L35.993,28.308 C35.993,29.242 35.188,30.000 34.193,30.000 L1.797,30.000 C0.803,30.000 -0.003,29.242 -0.003,28.308 L-0.003,1.690 C-0.003,0.757 0.803,-0.002 1.797,-0.002 ZM18.103,14.686 L6.563,5.476 L4.833,7.154 L18.126,18.011 L31.169,7.145 L29.417,5.487 L18.105,14.686 L18.103,14.686 Z'/%3E%3C/svg%3E");
  background-color: #c06d55;
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: 6.5em;
    width: 6.5em;
  }
  .fixed_banner > div {
    margin-bottom: 0.6em;
  }
  .fixed_banner p {
    width: var(--size);
  }
  .fixed_banner p .tt {
    width: 100%;
    letter-spacing: 0.1em;
  }
  .fixed_banner p .tt::before {
    margin-bottom: 0.7777777778em;
    transition: all 0.3s;
  }
  .fixed_banner .tel p {
    border-radius: 10px 0 0 10px;
    padding-top: 3px;
    height: 21.5em;
  }
  .fixed_banner .tel p .tt {
    font-size: 1.8em;
  }
  .fixed_banner .tel .ov {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    position: absolute;
    left: var(--size);
    height: 100%;
    top: 0;
    width: var(--w_tel);
    border-left: 1px solid #fff;
  }
  .fixed_banner .tel .ov .text {
    font-size: 1.5em;
    font-family: var(--f-en);
  }
  .fixed_banner .web p .tt::before {
    margin-bottom: 0.5em;
  }
  .fixed_banner .mail {
    transition: all 0.3s;
  }
  .fixed_banner .mail p {
    transition: all 0.3s;
    border-radius: 10px 0 0 10px;
    height: 20em;
  }
  .fixed_banner .mail p .tt {
    font-size: 1.6em;
  }
  .fixed_banner .mail:hover p {
    color: #fff;
    background-color: var(--main-color);
  }
  .fixed_banner .mail:hover p .tt::before {
    background-color: #fff;
  }
}
@media only screen and (max-width: 1560px) and (min-width: 769px) {
  .fixed_banner {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 650px) {
  .fixed_banner {
    font-size: 8px;
  }
  .totop {
    width: 60px;
    height: 60px;
  }
}
footer {
  background-image: url(../images/ft_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer .ft_head {
  padding: 92px 0 78px;
  margin-top: -120px;
  position: relative;
  z-index: 1;
}
footer .ft_head::before {
  position: absolute;
  content: "";
  z-index: -1;
  background-color: #fff;
  width: calc(100% - 20px);
  height: 100%;
  border-radius: 0 80px 80px 0;
  max-width: 1800px;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 1921px) {
  footer .ft_head::before {
    max-width: 68%;
  }
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  text-decoration: none;
}
footer .ft_logo {
  max-width: 250px;
  position: relative;
}
footer .ft_logo::before {
  position: absolute;
  content: "";
  top: 6px;
  right: -37px;
  background-color: #d9d5d1;
  width: 1px;
  height: 50px;
}
footer .ft_info {
  width: 50%;
  max-width: 570px;
}
footer .ft_info .des {
  margin-bottom: 26px;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  letter-spacing: 0.07em;
  margin-bottom: 0;
}
footer .ft_bot {
  width: 100%;
  border-top: 1px solid #bfcad6;
  margin-top: 50px;
  padding-top: 52px;
}
footer .ft_link {
  width: 100%;
}
footer .ft_flex {
  display: flex;
  justify-content: space-between;
}
footer .ft_map {
  max-width: 640px;
  width: 50%;
  height: 377px;
}
footer .ft_map iframe {
  border-radius: 10px;
}
footer .ft_tel {
  background-color: #f6f8fb;
  border-radius: 10px;
  font-size: 10px;
  display: flex;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 10px;
  margin-top: 20px;
  position: relative;
}
footer .ft_tel .txt {
  font-size: 1.8em;
  letter-spacing: 0.1em;
  color: var(--clr1);
  position: relative;
  padding-left: 2.8333333333em;
  margin-right: 21px;
}
footer .ft_tel .txt::before {
  position: absolute;
  content: "";
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24px' height='25px'%3E%3Cpath fill-rule='evenodd' fill='rgb(192, 109, 85)' d='M23.718,18.195 L23.718,22.756 C23.718,23.434 23.194,23.997 22.518,24.044 C21.955,24.083 21.494,24.104 21.138,24.104 C9.739,24.104 0.500,14.863 0.500,3.464 C0.500,3.107 0.519,2.647 0.559,2.084 C0.606,1.408 1.169,0.884 1.846,0.884 L6.407,0.884 C6.739,0.884 7.017,1.134 7.050,1.464 C7.080,1.760 7.107,1.996 7.132,2.177 C7.389,3.965 7.914,5.705 8.691,7.338 C8.813,7.596 8.733,7.904 8.501,8.068 L5.717,10.058 C7.419,14.024 10.580,17.184 14.545,18.888 L16.532,16.108 C16.700,15.874 17.011,15.794 17.271,15.915 C18.903,16.690 20.642,17.215 22.431,17.470 C22.610,17.496 22.846,17.525 23.140,17.553 C23.470,17.587 23.720,17.864 23.719,18.195 L23.718,18.195 Z'/%3E%3C/svg%3E");
  mask-position: center;
  background-repeat: no-repeat;
  mask-size: 100% auto;
  background-color: #c06d55;
  width: 1.3333333333em;
  height: 1.3888888889em;
  top: 0.5em;
  left: 0;
}
footer .ft_tel .tel_click {
  font-size: 2.8em;
}
footer .time_sheet {
  margin-top: 27px;
}
footer ul.idx01_icon {
  font-size: 18px;
  margin-top: 29px;
}
footer ul.idx01_icon li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
footer ul.idx01_icon .left {
  border-radius: 50%;
  background-color: #c06d55;
}
footer ul.idx01_icon .left img {
  filter: brightness(0) invert(1);
}
footer ul.idx01_icon .right {
  letter-spacing: 0.1em;
  padding-left: 0.72222222em;
}

.ft_link {
  --color1: #577082;
  --color2: #c06d55;
}
.ft_link a {
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .ft_link .link_list > div > ul {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
  }
  .ft_link .menu02 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .ft_link .menu02 .title {
    left: -8px;
    position: relative;
  }
  .ft_link .menu02 .ttl {
    position: relative;
    left: -5px;
  }
  .ft_link .menu02 .ft_list:first-of-type {
    max-width: 571px;
    width: 64.5%;
  }
  .ft_link .menu02 .ft_list:first-of-type ul {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    max-height: 25em;
  }
}
.ft_link .menu01 {
  width: 20%;
}
.ft_link .menu01 .title {
  color: var(--color1);
}
.ft_link .menu01 a::before {
  color: #4e79a6;
}
.ft_link .menu02 {
  width: 80%;
  padding-left: 150px;
}
.ft_link .menu02 .title {
  color: var(--color2);
}
.ft_link .menu02 a::before {
  color: var(--color2);
}
.ft_link .ttl {
  letter-spacing: 0.1em;
  font-size: 1.5em;
  color: var(--color2);
  font-weight: 500;
  line-height: 1.7083333333;
  margin-bottom: 0.5833333333em;
}
.ft_link .title {
  margin-bottom: 0.775em;
  padding-left: 0;
  font-size: 2.5em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  font-family: var(--f-en);
  text-transform: uppercase;
  width: 100%;
}
.ft_link .title::before {
  display: none;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ft_link a {
  display: table;
  position: relative;
  padding-left: 0em;
  color: inherit;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  color: var(--clr1);
  line-height: 1.6;
  padding-left: 0.77778em;
  line-height: 1.7777777778;
  transition: all 0.3s;
}
.ft_link a::before, .ft_link a::after {
  position: absolute;
  transition: all 0.3s;
}
.ft_link a::before {
  top: 0;
  left: 0;
  content: "・";
  margin-left: -0.35em;
  border-radius: 100%;
  width: auto;
  height: auto;
}
.ft_link a::after {
  content: "";
  left: 0.8em;
  bottom: 0;
  width: calc(100% - 0.8em);
  height: 1px;
  background-color: var(--clr1);
  opacity: 0;
  visibility: hidden;
  display: none;
}
.ft_link a span {
  display: block;
}
.ft_link a:hover {
  opacity: 1;
  color: var(--clr1);
}
@media only screen and (min-width: 769px) {
  .ft_link a:hover {
    text-decoration: underline;
    text-underline-offset: 0.5em;
  }
}

.copyright {
  margin: 0 auto 0;
  color: #fff;
  padding: 41px 0px 39px;
  position: relative;
  z-index: 1;
}
.copyright .flex {
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
.copyright .inner_big {
  max-width: 1135px;
}
.copyright .textwidget {
  display: block;
  margin-top: 2px;
  line-height: 20px;
  padding-left: 20px;
  padding-bottom: 3px;
  margin-left: 19px;
  border-left: 1px solid #cfcfcf;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.copyright .textwidget p {
  margin-bottom: 0;
  line-height: inherit;
  letter-spacing: 0.1em;
  color: #343434;
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 184px;
}

@media only screen and (min-width: 1281px) {
  footer .ft_map {
    margin-top: 8px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  footer .ft_link {
    font-size: min(14px, 1.25vw);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  footer .ft_head {
    padding: 60px 0;
  }
  footer .inner_big {
    padding-right: 40px;
  }
  footer .ft_info,
  footer .ft_map {
    width: 49%;
  }
  .ft_link .menu02 {
    padding-left: 100px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_info .des {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  footer .ft_logo {
    width: 45%;
  }
  footer .ft_logo::before {
    right: -20px;
    height: 40px;
  }
  footer .ft_tel {
    font-size: 9px;
  }
  .ft_link {
    font-size: min(16px, 1.29vw);
  }
  .ft_link .menu02 {
    padding-left: 4em;
  }
}
@media only screen and (max-width: 991px) {
  footer .ft_head {
    margin-top: -60px;
  }
  footer .ft_flex {
    flex-direction: column;
  }
  footer .ft_logo {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  footer .ft_logo::before {
    height: 1px;
    width: 50px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    top: auto;
  }
  footer .ft_info .des {
    text-align: center;
  }
  footer .ft_tel {
    font-size: 7px;
    padding-left: 0;
  }
  footer .ft_tel .txt {
    margin-right: 10px;
  }
  footer .time_sheet {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .ft_link .menu01 {
    width: 25%;
  }
  .ft_link .menu02 {
    width: 75%;
    padding-left: 2em;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

/*# sourceMappingURL=style.css.map */