@charset 'UTF-8';

@font-face {
  font-family: 'Yu Gothic';
  src: local('Yu Gothic Medium'), local('YuGothic-Medium');
}
@font-face {
  font-family: 'Yu Gothic';
  src: local('Yu Gothic Bold'), local('YuGothic-Bold');
  font-weight: bold;
}
:root{
  --NotoSansJP: 'Noto Sans JP', YuGothic, 'Yu Gothic', Meiryo, sans-serif;
  --NotoSerifJP: 'Noto Serif JP', 'Hiragino Mincho ProN', 'MS PMincho', serif;
  --ShipporiMincho: 'Shippori Mincho', 'Noto Serif JP', serif;
  --Barlow: 'Barlow Condensed', sans-serif;
}

html{
  min-width: 320px;
  font-size: calc(14 / 18 * 62.5%);
  overflow: auto;
}
@media screen and (min-width: 768px){
  html{
    font-size: 62.5%;
  }
}
body{
  padding: 0 calc(26 / 375 * 100vw);
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', Meiryo, sans-serif;
  font-size: 1.8rem;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 252, 241, 0.9);
  overflow: hidden;
}
@media screen and (min-width: 768px){
  body{
    padding: 0 calc(40 / 1280 * 100vw);
  }
}
@media screen and (min-width: 1280px){
  body{
    padding: 0;
  }
}
#wrapper{
  padding-top: calc(70 * 18 / 14 * .1rem);
  padding-bottom: calc(60 * 18 / 14 * .1rem);
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (min-width: 768px){
  #wrapper{
    padding-top: 11.8rem;
    padding-bottom: 0;
  }
}
h1, h2, h3, h4, h5, h6{
  margin: 0;
}
section p{
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}
nav ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
img, svg, video, object, canvas{
  max-width: 100%;
  height: auto;
}
img, svg{
  vertical-align: middle;
}
a{
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease-out;
}
a:hover{
  opacity: 0.75;
}
@media screen and (min-width: 768px){
  a[href^='tel:']{
    pointer-events: none;
  }
}
br.pc{
  display: none;
}
@media screen and (min-width: 768px){
  br.pc{
    display: inline;
  }
  br.sp{
    display: none;
  }
}
.clearfix::after{
  content: '';
  display: block;
  clear: both;
}

/* header */
#wrapper>header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 calc(20 / 375 * 100vw);
  margin: auto;
  max-width: 1920px;
  min-height: 70px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(255, 252, 241);
}
@media screen and (min-width: 768px){
  #wrapper>header{
    padding: 0;
    min-height: 11.8rem;
  }
}
#wrapper>header::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -10;
  margin: 0 calc(50% - 50vw);
  background-color: rgb(255, 252, 241);
}
#wrapper>header h1{
  margin: 0;
  font-weight: normal;
}
@media screen and (min-width: 768px){
  #wrapper>header .logo{
    padding: 0 calc(65 / 1920 * 100%);
  }
}
#wrapper>header .logo a{
  display: block;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
#wrapper>header .logo .mark{
  margin-right: .5rem;
  max-width: calc(37 * 18 / 14 * .1rem);
}
@media screen and (min-width: 768px){
  #wrapper>header .logo .mark{
    max-width: 7.0rem;
  }
}
#wrapper>header .logo .type{
  max-width: calc(184 * 18 / 14 * .1rem);
}
@media screen and (min-width: 768px){
  #wrapper>header .logo .type{
    max-width: 33.0rem;
  }
}
#wrapper>header .logo .type img{
  vertical-align: top;
}

/*  globalnav  */
#drawer{
  display: none;
}
@media screen and (max-width: 767px){
  /* sp only */
  label[for='drawer']{
    position: relative;
    width: calc(42 * 18 / 14 * .1rem);
    height: calc(42 * 18 / 14 * .1rem);
    line-height: 1;
    border-radius: 6px;
    border: solid 1px rgb(241, 157, 174);
    box-sizing: border-box;
    cursor: pointer;
    transition: .2s opacity ease-out;
  }
  label[for='drawer']:hover{
    opacity: 0.75;
  }
  label[for='drawer'] span{
    display: block;
    white-space: nowrap;
    overflow: hidden;
  }
  label[for='drawer'] span::before{
    content: '';
    display: inline-block;
    width: 100%;
  }
  label[for='drawer']::before,
  label[for='drawer']::after,
  label[for='drawer'] span::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(26 * 18 / 14 * .1rem);
    height: calc(2 * 18 / 14 * .1rem);
    background-color: rgb(241, 157, 174);
    transition: .4s transform ease-out;
  }
  label[for='drawer']::before{
    -webkit-transform: translateY( calc(-9 * 18 / 14 * .1rem) );
    transform: translateY( calc(-9 * 18 / 14 * .1rem) );
  }
  label[for='drawer']::after{
    -webkit-transform: translateY( calc(9 * 18 / 14 * .1rem) );
    transform: translateY( calc(9 * 18 / 14 * .1rem) );
  }
  #drawer:checked+header label[for='drawer']::before{
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }
  #drawer:checked+header label[for='drawer']::after{
    -webkit-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }
  #drawer:checked+header label[for='drawer'] span::after{
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  #globalnav{
    position: fixed;
    top: 70px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    overflow: auto;
    background-color: rgb(255, 255, 255);
    transition: .4s transform ease-out;
  }
  #drawer:not(:checked)+header #globalnav{
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  #drawer:checked+header #globalnav{
    -webkit-transform: none;
    transform: none;
  }
  #globalnav .pc{
    display: none;
  }
  #globalnav .target{
    padding: calc(20 * 18 / 14 * .1rem) calc(26 / 375 * 100vw) calc(9 * 18 / 14 * .1rem) calc(26 / 375 * 100vw);
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
  }
  #globalnav .target li{
    padding: calc(5 * 18 / 14 * .1rem) 0;
    flex-basis: calc(1 / 3 * 100%);
  }
  #globalnav .target li a{
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    font-family: var(--NotoSerifJP);
    font-size: calc(13 * 18 / 14 * .1rem);
    line-height: 1.4;
    text-align: center;
    word-break: keep-all;
  }
  #globalnav .target li:nth-of-type(1) a{
    color: rgb(241, 157, 174);
  }
  #globalnav .target li:nth-of-type(2) a{
    color: rgb(151, 207, 166);
  }
  #globalnav .target li:nth-of-type(3) a{
    color: rgb(249, 195, 133);
  }
  #globalnav .target li:nth-of-type(4) a{
    color: rgb(101, 170, 221);
  }
  #globalnav .target li:nth-of-type(5) a{
    color: rgb(165, 154, 202);
  }
  #globalnav .target li a::before{
    content: '';
    margin-bottom: calc(2 * 18 / 14 * .1rem);
    display: inline-block;
    width: calc(68 * 18 / 14 * .1rem);
    height: calc(68 * 18 / 14 * .1rem);
    border: solid 1px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 55%;
  }
  #globalnav .target li:not(:last-of-type) a::before{
    background-color: currentColor;
  }
  #globalnav .target li:nth-of-type(1) a::before{
    background-image: url(../images/ico_outpatient.svg);
    background-size: auto calc(36.5 * 18 / 14 * .1rem);
  }
  #globalnav .target li:nth-of-type(2) a::before{
    background-image: url(../images/ico_inpatient.svg);
    background-size: auto calc(18 * 18 / 14 * .1rem);
  }
  #globalnav .target li:nth-of-type(3) a::before{
    background-image: url(../images/ico_rehab.svg);
    background-size: auto calc(43.2 * 18 / 14 * .1rem);
  }
  #globalnav .target li:nth-of-type(4) a::before{
    background-image: url(../images/ico_concerned.svg);
    background-size: auto calc(32.2 * 18 / 14 * .1rem);
    background-position: 65% 50%;
  }
  #globalnav .target li:nth-of-type(5) a::before{
    background-image: url(../images/ico_dementia.svg);
    background-size: auto calc(47 * 18 / 14 * .1rem);
  }
  #globalnav .content{
    border-bottom: solid 1px rgb(211, 211, 211, 0.6);
  }
  #globalnav .content li{
    border-top: solid 1px rgb(211, 211, 211, 0.6);
  }
  #globalnav .content a{
    padding: calc(13 * 18 / 14 * .1rem) calc(26 / 375 * 100vw);
    display: block;
    font-family: var(--NotoSerifJP);
    font-size: calc(14 * 18 / 14 * .1rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    position: relative;
  }
  #globalnav .content ul a{
    padding-left: calc(39 / 375 * 100vw);
    color: rgb(0, 0, 0, 0.7);
  }
  #globalnav .content a:hover{
    opacity: 1.0;
  }
  #globalnav .content>li>a::after{
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(18 * 18 / 14 * .1rem);
    margin: auto;
    width: calc(15 * 18 / 14 * .1rem);
    height: calc(15 * 18 / 14 * .1rem);
    border-radius: 50%;
    background: rgb(241, 157, 174) url(../images/ico_gnav_next.svg) no-repeat calc(50% + 1px) 50%;
    transition: .4s background-color ease-out;
  }
  #globalnav .content>li.open>a::after{
    background-image: url(../images/ico_gnav_open.svg);
    background-position: 50% 50%;
  }
  #globalnav .content>li.close>a::after{
    background-image: url(../images/ico_gnav_close.svg);
    background-position: 50% 50%;
    background-color: rgb(105, 105, 105);
  }
  #btmenu{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  #btmenu ul{
    min-height: calc(60 * 18 / 14 * .1rem);
    display: -webkit-box;
    display: flex;
    background-color: rgb(255, 255, 255);
  }
  #btmenu li{
    flex-basis: 50%;
  }
  #btmenu li a{
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    font-family: var(--NotoSerifJP);
    font-size: calc(16 * 18 / 14 * .1rem);
    line-height: 1;
    letter-spacing: 0.1em;
    color: rgb(255, 255, 255);
    background-color: rgb(16, 55, 112);
  }
  #btmenu li a[href^='tel']{
    background-color: rgb(241, 157, 174);
  }
  #btmenu li a[href^='tel'] svg{
    margin-right: calc(4 * 18 / 14 * .1rem);
    width: calc(10 * 18 / 14 * .1rem);
    height: auto;
  }
}
@media screen and (min-width: 768px){
  /* pc only */
  label[for='drawer']{
    display: none;
  }
  #globalnav{
    padding-right: calc(38 / 1920 * 100%);
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
  #globalnav .sp{
    display: none;
  }
  #globalnav .content{
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    position: relative;
  }
  #globalnav .content::before{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    z-index: -5;
    height: 4.4rem;
    background-color: rgb(255, 252, 241);
  }
  #globalnav .content>li{
    flex-basis: 18.2rem;
    position: relative;
    background-color: rgb(255, 252, 241);
  }
  #globalnav .content .contact,
  #globalnav .content .access{
    flex-basis: 15.0rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
  }
  #globalnav .content .access{
    padding-left: calc(10 / 1347 * 100%);
  }
  #globalnav .content li a{
    padding: 1.35rem .5em;
    display: block;
    font-family: var(--NotoSerifJP);
    font-size: 1.7rem;
    font-size: min(17 / 1280 * 100vw, 1.7rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: calc(0.85 / 17 * 1em);
    text-align: center;
    color: rgb(51, 51, 51);
    white-space: nowrap;
  }
  #globalnav .content li a:not(href){
    cursor: pointer;
  }
  #globalnav .content .contact a,
  #globalnav .content .access a{
    padding: .75rem .5em;
    background-color: rgb(255, 255, 255);
    border: 1px solid;
  }
  #globalnav .content .contact a{
    color: rgb(249, 129, 162);
  }
  #globalnav .content .access a{
    color: rgb(11, 16, 87);
  }
  #globalnav .content li ul{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -10;
    min-width: 100%;
    background-color: rgb(255, 255, 255);
    transition: .4s transform ease-out;
  }
  #globalnav .content li a:not(:hover)+ul:not(:hover){
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  #globalnav .content li li:not(:first-of-type){
    border-top: solid 1px rgb(179, 179, 179);
  }
  #globalnav .content li li a{
    padding: .95rem .5em;
  }
  #globalnav .content li li a span{
    font-size: 1.5rem;
    font-size: min(15 / 1280 * 100vw, 1.7rem);
    line-height: 1.4;
  }
  #btmenu{
    display: none;
  }
}

/*  footer  */
#wrapper>footer{
  padding: 4.4rem calc(50vw - 50%) 0 calc(50vw - 50%);
  margin: 0 calc(50% - 50vw);
  position: relative;
  background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 768px){
  #wrapper>footer{
    padding-top: 7.6rem;
  }
  #wrapper>footer .container{
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  #orginfo{
    padding-right: calc(67 / 1200 * 100vw);
    flex-basis: 55.7rem;
    box-sizing: border-box;
  }
  #hour{
    flex-basis: 64.3rem;
  }
}

/*  orginfo  */
#orginfo dl{
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px){
  #orginfo dl{
    margin: 0;
    width: auto;
  }
}
#orginfo dt{
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#orginfo dt .mark{
  margin-left: -1.5%;
  margin-right: .5rem;
  max-width: 8.6rem;
}
#orginfo dt .type{
  max-width: 40.2rem;
}
#orginfo dt .type img{
  vertical-align: top;
}
#orginfo dd{
  margin: 0;
}
#orginfo .addr{
  padding-top: calc(28 / 21 * 1em);
  font-family: var(--ShipporiMincho);
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px){
  #orginfo .addr{
    font-size: 2.1rem;
    font-size: min(21 / 1280 * 100vw, 2.1rem);
    letter-spacing: calc(1.58 / 21 * 1em);
    text-align: start;
  }
}
#orginfo .tel{
  padding-bottom: calc(28 / 21 * 1em);
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px){
  #orginfo .tel{
    padding-top: calc(36 / 49 * 1em);
    padding-bottom: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(241, 157, 174);
    font-size: 4.9rem;
    font-size: min(49 / 1280 * 100vw, 4.9rem);
    line-height: 1;
    letter-spacing: calc(2.46 / 49 * 1em);
    white-space: nowrap;
    text-align: start;
  }
}
#orginfo .tel svg{
  margin-right: calc(2.46 / 49 * 1em);
  max-width: calc(37.8 / 49 * 1em);
}
#orginfo .tel span{
  font-family: var(--ShipporiMincho);
  font-weight: bold;
}
#orginfo .tel .add{
  margin-left: calc(2.46 / 19 * 1em);
  font-family: var(--NotoSerifJP);
  font-size: calc(19 / 49 * 100%);
  letter-spacing: calc(1.45 / 19 * 1em);
}

/*  hour  */
#hour{
  display: none;
}
@media screen and (min-width: 768px){
  #hour{
    display: block;
  }
  #hour p{
    padding-bottom: calc(10 / 21 * 1em);
    margin: 0;
    font-family: var(--NotoSerifJP);
    font-size: 2.1rem;
    font-size: min(21 / 1280 * 100vw, 2.1rem);
    line-height: 1.6;
    letter-spacing: calc(0.92 / 21 * 1em);
    text-align: center;
  }
  #hour table{
    width: 100%;
    border-collapse: collapse;
    box-sizing: border-box;
  }
  #hour thead{
    background-color: rgb(254, 237, 239);
  }
  #hour tbody{
    background-color: rgb(242, 249, 249);
  }
  #hour th, #hour td{
    padding: calc(16 / 18 * 1em);
    font-size: 1.8rem;
    font-size: min(18 / 1280 * 100vw, 1.8rem);
    font-weight: normal;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }
  #hour thead th{
    padding: calc(16 / 18 * 1em);
  }
  #hour thead th:first-of-type{
    font-family: var(--NotoSerifJP);
    letter-spacing: 0.05em;
  }
  #hour tbody th, #hour tbody td{
    padding: calc(20 / 18 * 1em);
  }
  #hour tbody th{
    padding-right: 0;
    width: calc(168 / 18 * 1em);
    font-family: var(--ShipporiMincho);
    font-weight: 600;
    letter-spacing: calc(0.9 / 18 * 1em);
    text-align: start;
    background-color: rgb(255, 250, 237);
    box-sizing: border-box;
  }
  #hour tbody tr{
    border-top: solid 2px rgb(255, 255, 255);
  }
  #hour thead th:not(:first-of-type),
  #hour tbody td{
    border-left: solid 2px rgb(255, 255, 255);
  }
}

/*  sitemap  */
#sitemap{
  display: none;
}
@media screen and (min-width: 768px){
  #sitemap{
    padding-top: 6.0rem;
    padding-bottom: 10.8rem;
    display: -webkit-box;
    display: flex;
  }
  #sitemap ul{
    font-size: 1.4rem;
    font-size: min(14 / 1280 * 100vw, 1.4rem);
  }
  #sitemap>ul{
    padding: 0 0 0 calc(25 / 14 * 1em);
    -webkit-box-flex: 1;
    flex-grow: 1;
    border-left: solid 1px rgb(179, 179, 179, 0.5);
    box-sizing: border-box;
  }
  #sitemap>ul:last-of-type{
    border-right: solid 1px rgb(179, 179, 179, 0.5);
  }
  #sitemap li{
    padding: calc(4 / 14 * 1em) 0 calc(4 / 14 * 1em) 1em;
    min-height: calc(30 / 14 * 1em);
    box-sizing: border-box;
    text-indent: -1em;
  }
  #sitemap ul ul{
    padding-top: calc(4 / 14 * 1em);
  }
  #sitemap ul ul li{
    padding-left: calc( (4.5 / 14 * 1em) + (9.5 / 14 * 1em / 2) );
  }
  #sitemap a{
    font-size: inherit;
    line-height: 1.4;
    letter-spacing: calc(1.68 / 14 * 1em);
    color: rgb(51, 51, 51);
  }
  #sitemap a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
  }
  #sitemap>ul>li>a::before{
    margin-top: -.15em;
    margin-right: calc(9.5 / 14 * 1em / 2);
    width: calc(4.5 / 14 * 1em);
    height: calc(4.5 / 14 * 1em);
    border-radius: 50%;
    background-color: rgb(249, 129, 162);
  }
  #sitemap ul ul a::before{
    margin-right: calc(5.7 / 14 * 1em);
    width: calc(8.3 / 14 * 1em);
    height: calc(5.3 / 14 * 1em);
    border-left: solid 1px rgb(51, 51, 51, 0.8);
    border-bottom: solid 1px rgb(51, 51, 51, 0.8);
    box-sizing: border-box;
  }
}

/*  small  */
#wrapper>footer>small{
  margin: 0 calc(50% - 50vw);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  min-height: calc(40 * 18 / 14 * .1rem);
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: calc(1.56 / 12 * 1em);
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: rgb(11, 16, 87);
  box-sizing: border-box;
}
@media screen and (min-width: 768px){
  #wrapper>footer>small{
    min-height: 10.0rem;
  }
}

/* gotop @common.js */
#gotop{
  position: fixed;
  bottom: 0;
  left: -50%;
  right: -50%;
  z-index: 5;
  padding-bottom: calc( (60 * 18 / 14 * .1rem) + (20 / 375 * 100vw) );
  padding-left: calc(20 / 375 * 100vw);
  padding-right: calc(20 / 375 * 100vw);
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  pointer-events: none;
  transition: -webkit-transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
}
@media screen and (min-width: 768px){
  #gotop{
    padding-bottom: calc(38 / 1920 * 100vw);
    padding-left: 0;
    padding-right: 0;
    width: calc(100vw - (38 / 1920 * 100vw) * 2 );
    max-width: 1566px;
  }
}
#gotop.bottom{
  position: absolute;
  top: 0;
  bottom: auto;
}
#gotop.hidden{
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
#gotop a{
  position: relative;
  display: block;
  margin: calc(22 * 18 / 14 * -.1rem) 0 0 auto;
  width: calc(44 * 18 / 14 * .1rem);
  height: calc(44 * 18 / 14 * .1rem);
  border-radius: 50%;
  background-color: rgb(11, 16, 87);
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  pointer-events: auto;
}
@media screen and (min-width: 768px){
  #gotop a{
    margin-top: -4.1rem;
    width: 8.2rem;
    height: 8.2rem;
  }
}
#gotop.hidden a{
  margin-top: 0;
}
#gotop a::before{
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../images/ico_gotop.svg) no-repeat 50% 50%/calc(43 / 82 * 100%) auto;
}
#gotop a:hover{
  opacity: 0.75;
}

/* fadein @common.js */
.fadein:not(.outside):not(.inner), .fadein:not(.outside).inner>*{
  transition : opacity .8s ease-in-out .4s, -webkit-transform .8s ease-out .4s;
  transition : opacity .8s ease-in-out .4s, transform .8s ease-out .4s;
  transition : opacity .8s ease-in-out .4s, transform .8s ease-out .4s, -webkit-transform .8s ease-out .4s;
}
.fadein.outside:not(.inner), .fadein.outside.inner>*{
  opacity : 0;
}
.fadein.outside.toleft:not(.inner), .fadein.outside.toleft.inner>*{
  -webkit-transform : translate(16.0rem, 0);
  transform : translate(16.0rem, 0);
}
.fadein.outside.toright:not(.inner), .fadein.outside.toright.inner>*{
  -webkit-transform : translate(-16.0rem, 0);
  transform : translate(-16.0rem, 0);
}
.fadein.outside.totop:not(.inner), .fadein.outside.totop.inner>*{
  -webkit-transform : translate(0, 4.4rem);
  transform : translate(0, 4.4rem);
}
.fadein:not(.outside).inner>*:nth-child(1){
  transition-delay: .4s;
}
.fadein:not(.outside).inner>*:nth-child(2){
  transition-delay: .8s;
}
.fadein:not(.outside).inner>*:nth-child(3){
  transition-delay: 1.2s;
}
.fadein:not(.outside).inner>*:nth-child(4){
  transition-delay: 1.6s;
}
.fadein:not(.outside).inner>*:nth-child(5){
  transition-delay: 2.0s;
}
.fadein:not(.outside).inner>*:nth-child(6){
  transition-delay: 2.4s;
}
.fadein:not(.outside).inner>*:nth-child(7){
  transition-delay: 2.8s;
}
.fadein:not(.outside).inner>*:nth-child(8){
  transition-delay: 3.2s;
}
.fadein:not(.outside).inner>*:nth-child(9){
  transition-delay: 3.6s;
}
.fadein:not(.outside).inner>*:nth-child(10){
  transition-delay: 4.0s;
}
.fadein:not(.outside).inner>*:nth-child(11){
  transition-delay: 4.4s;
}
.fadein:not(.outside).inner>*:nth-child(12){
  transition-delay: 4.8s;
}

/* reset-swiper @swiper.min.css */
.swiper-pagination{
  position: static;
  bottom: auto;
  left: auto;
  width: auto;
  text-align: start;
  -webkit-transform: none;
  transform: none;
  transition: none;
  z-index: auto;
}
.swiper-pagination-bullet{
  margin: 0;
  width: auto;
  height: auto;
  background: currentColor;
  border-radius: 50%;
  opacity: 1.0;
  display: inline-block;
  cursor: pointer;
}
.swiper-pagination-bullet-active{
  background: currentColor;
}
.swiper-button-prev,
.swiper-button-next{
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  width: auto;
  height: auto;
  margin-top: 0;
  z-index: auto;
  background-image: none;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  cursor: pointer;
  outline: none;
  background-color: currentColor;
}

/*  components  */
.cmn_button a{
  padding: 0 2.0em;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: calc(27.6rem * 18 / 14);
  min-height: calc(3.9rem * 18 / 14);
  font-size: 1.8rem;
  font-weight: 600;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  line-height: 1;
  letter-spacing: calc(2.6 / 18 * 1em);
  text-indent: calc(2.6 / 18 * 1em);
  text-align: center;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  background-color: rgb(11, 16, 87);
  border-radius: 25px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px){
  .cmn_button:not(.min) a{
    min-width: 45.8rem;
    min-height: 6.2rem;
    border-radius: 31px;
  }
}
.cmn_button a::after{
  content: '';
  margin-left: 1em;
  width: calc(12 / 18 * 1em);
  height: calc(21 / 18 * 1em);
  background: url(../images/ico_button.svg) no-repeat 50% 50%/contain;
}
.cmn_kerning{
  font-family: YuMincho, 'Yu Mincho', serif;
  letter-spacing: 0;
}
.cmn_header{
  padding: 2.4rem min(50vw - 50%, 360px);
  margin: 0 max(50% - 50vw, -360px);
  position: relative;
  aspect-ratio: 1200 / 440;
  min-height: min(440 / 1200 * 100vw, 440px);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (min-width: 768px){
  .cmn_header{
    /* aspect-ratio: 1920 / 440; */
    aspect-ratio: auto;
    /* min-height: min(440 / 1920 * 100vw, 440px); */
    min-height: 44rem;
  }
}
.cmn_header h1{
  padding: .5em 1em;
  margin: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  max-width: 414px;
  font-family: var(--NotoSerifJP);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  color: rgb(11, 16, 87);
  background-color: rgb(255, 255, 255, 0.8);
  box-sizing: border-box;
}
@media screen and (min-width: 768px){
  .cmn_header h1{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: min(554 / 1280 * 100%, 55.4rem);
    min-height: min(122 / 1280 * 100vw, 12.2rem);
    max-width: none;
    font-size: 3.5rem;
  }
  .cmn_header.min h1{
    min-width: 30.4rem;
  }
}
.cmn_header .image{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -10;
}
.cmn_header .image img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cmn_section{
  padding: 6.8rem 0;
}
.cmn_section h1,
.cmn_section>h2{
  padding: 1em 0;
  margin: 0;
  font-family: var(--NotoSerifJP);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: calc(7.4 / 37 * 1em);
  text-align: center;
  color: rgb(11, 16, 87);
  position: relative;
}
@media screen and (min-width: 768px){
  .cmn_section h1,
  .cmn_section>h2{
    font-size: 3.7rem;
  }
}
.cmn_section h1::after,
.cmn_section>h2::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(93 / 37 * 1em);
  height: .7rem;
  background: rgb(249, 129, 162)
    linear-gradient(147deg, rgb(11, 16, 87),
    rgb(11, 16, 87) 40%, rgb(255, 255, 255, 0) 40%,
    rgb(255, 255, 255, 0))
    no-repeat;
}

/*  notfound  */
#notfound .desc{
  padding: 6.4rem 0;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*  keyframes  */
@-webkit-keyframes fadein{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1.0;
  }
}
@keyframes fadein{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1.0;
  }
}
