﻿@charset "utf-8";

/*----------------------------------------------------------------------------------------------------

  Header
  
----------------------------------------------------------------------------------------------------*/

header {
    width:100%;
    position:relative;
    z-index:200;
    background-color:#fff;
    padding:24px 0;
}

.l-hd {
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
}
.l-hd h1 {
    width:337px;
    align-self:center;
}
.l-hdR {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:end;
    -ms-flex-pack:end;
    justify-content:flex-end;
    text-align:left;
    -webkit-box-align:end;
    -ms-flex-align:end;
    align-items:center;
}

@media screen and (max-width:1240px) {
    .l-hd {
      margin-left:20px;
      margin-right:20px;
    }
}

@media screen and (max-width:1080px) {
    .l-hdR {
        width: 320px;
    }
}

@media screen and (max-width:750px) {
    header {
        box-shadow:0 2px 10px -2px rgba(0,0,0,0.1);
        padding: 0;
        height: 120px;
    }

    html.is-sp-gNav-open header {
        min-width:320px;
        position:fixed;
        left:0;
        top:0;
    }

    .l-hd {
        -webkit-box-align:stretch;
        -ms-flex-align:stretch;
        align-items:stretch;
        -webkit-box-align:center;
        -ms-flex-align:center;
        align-items:center;
        margin: 0 0 0 20px;
    }

    .l-hd h1 {
    }

    .l-hdR {
        margin-left:auto;
    }
}


/*--------------------------------------------------------------------------------
  nav
--------------------------------------------------------------------------------*/

@media print,screen and (min-width:751px) {
    .l-hdR__spNav {
        display:none;
    }
}

@media screen and (max-width:750px) {  
    .l-hdR__spNav {
        list-style:none;
        padding-right:120px;
        color: #666666;
        line-height: 1;
    }

    .l-hdR__spNav a,
    .l-hdR__spNav a:visited,
    .l-hdR__spNav a:hover { color:inherit; text-decoration:none; }

    .l-hdR__spNav li .spNav__txt {
        display: block;
        height: 120px;
        width: 120px;
        text-align: center;
    }

    .l-hdR__spNav .spNav__txt:before {
        content:"";
        width:100%;
        height:60px;
        background-position:center center;
        background-repeat:no-repeat;
        background-size:contain;
        display:block;
        margin-top: 14px;
    }

    .l-hdR__spNav li.home .spNav__txt:before { background-image:url(../image/icon/home.png); }

    .l-hdR__spNav li a,
    .l-hdR__spNav li.spNavBtn {
        display: flex;
        align-items: center;
    }
}


/*--------------------------------------------------------------------------------
  SP nav button
--------------------------------------------------------------------------------*/

@media print,screen and (min-width:751px) {
  .spNavBtn-lo {
    display:none;
  }
}

.spNavBtn-lo {
    width:100%;
    height:120px;
    min-width:320px;
    margin-left:auto;
    margin-right:auto;
    position:fixed;
    left:0;
    right:0;
    top:0;
    pointer-events:none;
    z-index:200;
}

.spNavBtn {
    pointer-events:auto;
    cursor:pointer;
    float:right;
    width:120px;
    height:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    background-color:#42bfdd;
    color:#fff;
}

.spNavBtn:after {
  content:"メニュー";
  text-align:center;
  display:block;
  line-height:1;
}

html.is-sp-gNav-open .spNavBtn:after {
  content:"閉じる";
}
  
.spNavBtn__icon,
.spNavBtn__icon span,
.spNavBtn__icon span:before,
.spNavBtn__icon span:after {
  display:inline-block;
}
    
.spNavBtn__icon {
    position:relative;
    width:42px;
    height:36px;
    transition:all 0.3s ease-out;
    margin-bottom:0.5em;
    margin-top: 0.25em;
}
        
.spNavBtn__icon span {
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  transition:all 0.3s ease-out;
}
  
.spNavBtn__icon span,
.spNavBtn.is-close .spNavBtn__icon span {
  background-color:#fff;
}
  
html.is-sp-gNav-open .spNavBtn__icon span,
html.is-sp-gNav-open .spNavBtn.is-close .spNavBtn__icon span {
  background-color:#fff;
}
    
.spNavBtn__icon span:nth-of-type(1) {
  top:0;
}
.spNavBtn__icon span:nth-of-type(2) {
  top:17px;
}
.spNavBtn__icon span:nth-of-type(3) {
  bottom:0;
}
  
.spNavBtn.is-aniSet .spNavBtn__icon span:nth-of-type(1) {
  -webkit-animation:navBtn01 0.4s forwards;
  animation:navBtn01 0.4s forwards;
}
    
.spNavBtn.is-aniSet .spNavBtn__icon span:nth-of-type(2) {
  transition:opacity 0.2s 0.2s;
  opacity:1;
} 
      
.spNavBtn.is-aniSet .spNavBtn__icon span:nth-of-type(3) {
  -webkit-animation:navBtn02 0.4s forwards;
  animation:navBtn02 0.4s forwards;
}
      
.spNavBtn.is-close .spNavBtn__icon span:nth-of-type(1) {
  -webkit-animation:active-navBtn01 0.4s forwards;
  animation:active-navBtn01 0.4s forwards;
}
   
.spNavBtn.is-close .spNavBtn__icon span:nth-of-type(2) {
  opacity:0;
}
      
.spNavBtn.is-close .spNavBtn__icon span:nth-of-type(3) {
  -webkit-animation:active-navBtn03 0.4s forwards;
  animation:active-navBtn03 0.4s forwards;
}
  
html.is-sp-gNav-open .spNavBtn:not(.is-aniSet) .spNavBtn__icon span:nth-of-type(1) {
  transform:translateY(17px) rotate(45deg);
  animation:none;
}
        
html.is-sp-gNav-open .spNavBtn:not(.is-aniSet) .spNavBtn__icon span:nth-of-type(3) {
  transform:translateY(-17px) rotate(-45deg);
  animation:none;
}

@keyframes navBtn01 {
  0% {
    transform:translateY(17px) rotate(45deg);
  }
  50% {
    transform:translateY(17px) rotate(0);
  }
  100% {
    transform:translateY(0) rotate(0);
  }
}
@keyframes navBtn02 {
  0% {
    transform:translateY(-17px) rotate(-45deg);
  }
  50% {
    transform:translateY(-17px) rotate(0);
  }
  100% {
    transform:translateY(0) rotate(0);
  }
}
@keyframes active-navBtn01 {
  0% {
    transform:translateY(0) rotate(0);
  }
  50% {
    transform:translateY(17px) rotate(0);
  }
  100% {
    transform:translateY(17px) rotate(45deg);
  }
}
@keyframes active-navBtn03 {
  0% {
    transform:translateY(0) rotate(0);
  }
  50% {
    transform:translateY(-17px) rotate(0);
  }
  100% {
    transform:translateY(-17px) rotate(-45deg);
  }
}


/*--------------------------------------------------------------------------------
  文字サイズ
--------------------------------------------------------------------------------*/

.l-hdR__fsize {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  line-height:1;
}

.l-hdR__fsize dt {
  padding-right:1rem;
}

.l-hdR__fsize dd {
  border:1px solid #42bfdd;
  min-width:3em;
  padding-top:0.5em;
  padding-bottom:0.5em;
  text-align:center;
  cursor:pointer;
}

.l-hdR__fsize dd:first-of-type {
  border-radius:1.5em 0 0 1.5em;
  border-right:0;
  padding-left:1em;
  padding-right:0.75em;
}

.l-hdR__fsize dd:last-of-type {
  border-radius:0 1.5em 1.5em 0;
  border-left:0;
  padding-left:0.75em;
  padding-right:1em;
}

.ua-pc .l-hdR__fsize dd {
  transition:background 0.1s ease;
}
.ua-pc .l-hdR__fsize dd:hover {
  background-color:rgba(66,191,221,0.2);
}

body.fs-large .l-hdR__fsize dd[data-size="L"],
body.fs-standard .l-hdR__fsize dd[data-size="S"],
body.fs-medium .l-hdR__fsize dd[data-size="M"] {
  background-color:#42bfdd;
  border-color:#42bfdd;
  color:#fff;
}

body.fs-standard .l-hdR__fsize dd[data-size="S"] {
  margin-right:-1px;
  border-right:1px solid #42bfdd;
}

body.fs-large .l-hdR__fsize dd[data-size="L"] {
  margin-left:-1px;
  border-left:1px solid #42bfdd;
}

body.fs-large .l-hdR__fsize dt { font-size:80%; }
body.fs-medium .l-hdR__fsize dt { font-size:90%; }

body.fs-large .l-hdR__fsize dd { font-size:80%; }
body.fs-medium .l-hdR__fsize dd { font-size:90%; }

@media screen and (max-width:1080px) {
  .l-hdR__fsize {
    margin-bottom: .5em;
  }
}

@media screen and (max-width:750px) {
  .l-hdR__fsize {
    display:none;
  }
}


/*--------------------------------------------------------------------------------
  サイト内検索
--------------------------------------------------------------------------------*/

.l-gSearch {
  line-height:1;
}

.l-gSearch form {
  position:relative;
}

.l-gSearch #search_area {
  background:none;
  border:none;
  margin:0;
  height:100%;
}

body.fs-large .l-gSearch #search_area { font-size:85%; }
body.fs-medium .l-gSearch #search_area { font-size:90%; }


@media print,screen and (min-width:751px) {
  .l-gNav .l-gSearch {
    display:none;
  }
  
  .l-gSearch {
    padding-left:2rem;
  }
  
  .l-gSearch form {
    width:320px;
    height:2.5rem;
    border-radius:0.5rem;
    background-color:#f0f0f0;
    border:2px solid #f0f0f0;
  }
  
  .l-gSearch #search_area {
    padding:0 0 0 1rem;
    width:-webkit-calc(100% - 3.6rem);
    width:calc(100% - 3.6rem);
  }
  
  .l-gSearch #search {
    width:1.5rem;
    height:100%;
    position:absolute;
    top:0;
    right:1.2rem;
    z-index:1;
    border:none;
    padding:0;
    margin:0;
    font-size:0;
    cursor:pointer;
    background:url(../image/icon/search_gray.png) no-repeat center center;
    background-size:contain;
  }
  
  .l-gSearch form.is-focus {
    background-color:#fff;
    border-color:#a8cef3;
  }
  
  .l-gSearch form.is-focus #search {
    background-image:url(../image/icon/search.png);
  }
}

@media screen and (max-width:750px) {
  .l-hdR .l-gSearch {
    display:none;
  }
  
  .l-gSearch {
    padding-top:2em;
  }
  
  .l-gSearch form {
    text-align:center;
      overflow: hidden;
  }
  
  .l-gSearch #search_area {
    width:75%;
    background-color:#f0f0f0;
    border:2px solid #f0f0f0;
    padding:0.5em;
    text-align:left;
    border-radius:8px;
  }
  
  .l-gSearch #search {
    border:none;
    width: 20%;
    padding:0.75em 0;
    letter-spacing:0.5em;
    margin:0 0 0 3%;
    line-height:1;
    background-color:#42bfdd;
    color:#fff;
    border-radius:8px;
  }
  
  .l-gSearch #search_area:focus {
    background-color:#fff;
    border-color:#a8cef3;
  }
}


/*----------------------------------------------------------------------------------------------------

  Global navigation
  
----------------------------------------------------------------------------------------------------*/

.l-gNav {
  position:relative;
  z-index:100;
}

.l-gNav ul {
  list-style:none;
}

.l-gNav li a { display:block; }
.l-gNav li a,
.l-gNav li a:visited,
.l-gNav li a:hover,
.l-gNav li a.no-link:hover,
.ua-pc .l-gNav li a.no-link:hover { color:inherit; text-decoration:none; }
.ua-pc .l-gNav li a:not(.no-link):hover { color:#42bfdd; }
.l-gNav li a.no-link { cursor:inherit; }

.ua-pc .l-gNav-item--second__body .ttl a:hover { color:#52c5eb !important; text-decoration:none; }
.ua-pc .l-gNav-item--second a:hover { text-decoration:underline; }

/* second */
.l-gNav-item--secondList > li {
  padding-top:1.25em;
}

.l-gNav-item--secondList > li > a {
  padding-left:1.5em;
}

.l-gNav-item--secondList > li > a:before {
  content:"";
  margin-left:-2em;
  margin-right:0.2em;
  width:1.8em;
  height:1em;
  background:url(../image/icon/ic-arrow-right01.png) no-repeat center center;
  background-size:contain;
  vertical-align:middle;
  margin-bottom:0.2em;
  display:inline-block;
}

/* third */
.l-gNav-item--thirdList {
  font-size:0.9em;
}

.l-gNav-item--thirdList > li > a:before {
  content:"";
  margin-left:-2.2rem;
  width:2.2rem;
  height:1em;
  background:url(../image/icon/ar_blue.png) no-repeat center center;
  background-size:auto 1rem;
  vertical-align:middle;
  margin-bottom:0.2em;
  display:inline-block;
}
  
@media print,screen and (min-width:751px) {
  .l-gNav {
    background:-webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(221,243,250,1) 100%);
    background:linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(221,243,250,1) 100%);
  }
  
  .l-gNav:before {
    content:"";
    width:100%;
    height:3px;
    background-color:#8cd7f0;
    position:absolute;
    left:0;
    right:0;
    top:-webkit-calc(100% - 3px);
    top:calc(100% - 3px);
  }
  
  .l-gNav-item {
    list-style:none;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-pack:distribute;
    justify-content:space-around;
    -webkit-box-align:stretch;
    -ms-flex-align:stretch;
    align-items:stretch;
  }
  
  /* first */
  .l-gNav-item--firstList {
    list-style:none;
    width:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-pack:distribute;
    justify-content:space-around;
    -webkit-box-align:stretch;
    -ms-flex-align:stretch;
    align-items:stretch;
  }
  
  .l-gNav-item--firstList > li {
    white-space:nowrap;
    -webkit-box-flex:1;
    -ms-flex-positive:1;
    flex-grow:1;
    line-height:1.2;
    text-align:center;
    overflow:hidden;
  }
  
  .l-gNav-item--firstList > li > a {
    position:relative;
    width:100%;
    height:100%;
    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;
  }

  .l-gNav-item--firstList > li > a:before,
  .l-gNav-item--firstList > li.last-item > a:after {
    content:"";
    width:1px;
    height:50%;
    background-color:rgba(140,215,240,0.65);
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
  }
  
  .l-gNav-item--firstList > li.last-item > a:after {
    left:inherit;
    right:0;
  }

  .l-gNav-item--firstList > li .gNav__txt {
    font-size:20px; /* 文字サイズ固定 */
    font-weight:500;
    display:block;
    padding-top:1.2rem;
    padding-bottom:1.4rem;
    position:relative;
    z-index:2;
  }

  /* HOME 
  .l-gNav-item--firstList > li.home .gNav__txt {
    width:22px;
    height:22px;
    background:url(../image/icon/home.png) no-repeat center center;
    background-size:contain;
    font-size:0;
    line-height:0;
  }
  */

  .l-gNav-item--firstList > li.parent .gNav__txt:before,
  .l-gNav-item--firstList > li.parent .gNav__txt:after {
    content:"";
    position:absolute;
    left:50%;
    bottom:-18px;
    transform:translate(-50%,10px);
    z-index:100;
  }

  .l-gNav-item--firstList > li.parent .gNav__txt:before {
    border:18px solid transparent;
    border-bottom-color:#8cd7f0;
  }
    
  .l-gNav-item--firstList > li.parent .gNav__txt:after {
    border:14px solid transparent;
    border-bottom-color:#fff;
  }

  .l-gNav.is-aniSet .l-gNav-item--firstList > li.parent .gNav__txt:before,
  .l-gNav.is-aniSet .l-gNav-item--firstList > li.parent .gNav__txt:after {
    transition:all 0.2s;
  }
  
  .l-gNav.is-aniSet .l-gNav-item--firstList > li.parent.is-active .gNav__txt:before,
  .l-gNav.is-aniSet .l-gNav-item--firstList > li.parent.is-active .gNav__txt:after {
    transform:translate(-50%,-3px);
  }
  
  .l-gNav-item--firstList > li.parent.is-active > a {
    color:#42bfdd;
  }
    
  /* second */
  .l-gNav-item--second {
    display:none;
    width:100%;
    margin-left:auto;
    margin-right:auto;
    position:absolute;
    left:50%;
    top:100%;
    transform:translateX(-50%);
    background-color:#fff;
    z-index:99;
    text-align:left;
    padding-top:40px;
    padding-bottom:50px;
  }

  .l-gNav-item--second__body {
    max-width:1200px;
    width:100%;
    margin-left:auto;
    margin-right:auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    opacity:0;
  }
  
  .l-gNav-item--firstList > li.parent.is-active .l-gNav-item--second__body {
    animation:gNav-sd-open__body 0.3s forwards;
    animation-delay:0.15s;
  }
  
  html.is-gNav-sd-close .l-gNav-item--firstList > li.parent .l-gNav-item--second__body {
    animation:gNav-sd-close__body 0.15s forwards;
  }
  
  .l-gNav-item--second__body .block {
    line-height:1.4;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
  }
  
  .l-gNav-item--second__body .ttl {
    display:block;
    font-size:1.1em;
    color:#42bfdd;
    padding-bottom:0.75em;
    margin-bottom:0.75em;
    font-weight:500;
    border-bottom:1px solid #dcdcdc;
  }
  
  .l-gNav-item--secondList > li > a {
    display:block;
  }

  .l-gNav-item--secondList.cols {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    width: 100%;
  }
  
  .l-gNav-item--secondList.cols > li {
    padding-right:1em;
    white-space:normal;
  }
  
  .l-gNav-item--secondList.cols--5 > li {
    width:20%;
  }
  
  .l-gNav-item--Subnav {
    display: none;
  }
    
  /* 背景 */
  html.is-gNav-sd-open,
  html.is-gNav-sd-open body {
    height:100%;
  }
  
  .gNav-sd-bg {
    content:"";
    background-color:transparent;
  }
  
  html.is-gNav-sd-open .gNav-sd-bg,
  html.is-gNav-sd-close .gNav-sd-bg {
    background-color:rgba(0,0,0,0.2);
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:98;
  }
  
  html.is-gNav-sd-open .gNav-sd-bg {
    animation:gNav-sd-open-bg 0.3s forwards;
  }
  
  html.is-gNav-sd-close .gNav-sd-bg {
    animation:gNav-sd-close-bg 0.3s forwards;
  }
}
 
@media screen and (max-width:1240px) {
    .l-gNav-item {
        width: calc(100% - 40px);
        margin-left:20px;
        margin-right:20px;
    }    
    .l-gNav-item--second__body {
        width: calc(100% - 40px);
        margin-left:20px;
        margin-right:20px;
    }
}
  
@media screen and (max-width:1100px) {
  .l-gNav-item--secondList.cols--5 > li {
    width: 50%;
  }
}

@keyframes gNav-sd-open__body {
  0% { opacity:0; }
  100% { opacity:1; }
}

@keyframes gNav-sd-close__body {
  0% { opacity:1; }
  100% { opacity:0; }
}

@keyframes gNav-sd-open-bg {
  0% { background:transparent; }
  100% { background-color:rgba(0,0,0,0.2); }
}

@keyframes gNav-sd-close-bg {
  0% { background-color:rgba(0,0,0,0.2); }
  100% { background:transparent; }
}


@media screen and (max-width:750px) {
    .l-gNav-item {
        width: calc(100% - 60px);
        margin-left:30px;
        margin-right:30px;
    }    
    .l-gNav-item--second__body {
        width: calc(100% - 60px);
        margin-left:30px;
        margin-right:30px;
    }
    .l-gNav-item--secondList.cols {
        width: calc(100% - 60px);
        margin-left:30px;
        margin-right:30px;
    }
    
  .gNav-sd-bg {
    display:none;
  }
  
  html.is-sp-gNav-open {
    overflow-y:hidden;
  }

  .l-SPgNav-wrap {
    background-color:#fff;
    display:none;
    pointer-events:none;
    width:100%;
    min-width:320px;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:199;
    padding-top:120px; /* .gNavBtn の分 */
  }

  .l-gNav {
    pointer-events:auto;
    height:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
  }
  
  .l-SPgNav {
    display:none;
    width:100%;
    overflow-y:auto;
    padding:1.25em 0 0 0;
  }
  
  .l-SPgNav:after {
    content:"";
    width:100%;
    height:2em;
    display:block;
  }
  
  .l-gNav-item ul {
    text-align:left;
  }
  
  .l-gNav-item li a {
    display:block;
    position:relative;
  }
  
  /* first */    
  .l-gNav-item--firstList {
    border-top:1px solid #dcdcdc;
  }
    
  .l-gNav-item--firstList > li {
    border-bottom:1px solid #dcdcdc;
  }
  
  .l-gNav-item--firstList > li > a {
    padding:0.75em;
  }
    
  .l-gNav-item--firstList > li .gNav__txt {
    font-weight: 700;
    font-size: 30px;
  }
  
  .l-gNav-item--firstList > li .gNav__txt br {
    display:none;
  }
  
  .l-gNav-item--firstList > li .gNav__txt * {
    font-size:100%;
  }
  
  .l-gNav-item--firstList > li.parent > a {
    padding-right:2em;
  }
  
  .l-gNav-item--firstList > li.parent.is-active {
    margin-top:-1px;
    border-top:1px solid #e8f7fc;
  }
  
  .l-gNav-item--firstList > li.parent.is-active > a {
    background-color:#e8f7fc;
  }
  
  .l-gNav-item--firstList > li.parent .icon {
    content:"";
    width:24px;
    height:24px;
    position:absolute;
    right:0.75em;
    top:50%;
    transform:translateY(-50%);
    transition:0.4s cubic-bezier(0.2, 0.6, 0.3, 1.1);
  }
  
  .l-gNav-item--firstList > li.parent.is-active .icon {
    transform:translateY(-50%) rotate(45deg);
  }
  
  .l-gNav-item--firstList > li.parent .icon:before {
    height:100%;
    width:4px;
    right:-webkit-calc(50% - 2px);
    right:calc(50% - 2px);
    border-radius: 2px;
  }
  
  .l-gNav-item--firstList > li.parent .icon:after {
    height:4px;
    width:100%;
    right:0;
    border-radius: 2px;
  }
  
  .l-gNav-item--firstList > li.parent .icon:before,
  .l-gNav-item--firstList > li.parent .icon:after {
    content:"";
    display:inline-block;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#42bfdd;
  }
  
  /* second */
  .l-gNav-item--second {
    display:none;
  }
  
  .l-gNav-item--second__body {
    padding:0.75em 0 0.5em ;
  }
  
  .l-gNav-item--second__body .photo {
    display:none;
  }

  .l-gNav-item--second__body .block {
    line-height:1.4;
    padding-bottom:1em;
  }

  .l-gNav-item--second__body .ttl {
    display:none;
  }
    .l-gNav-item--secondList.cols {
        width: calc(100% - 0.5em);
        margin: 0 0 0 .5em;
    }
  .l-gNav-item--secondList.cols--5 > li {
    width: 100%;
  }
    
  .l-gNav-item--Subnav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: .75em;
    padding-left: .5em;
  }
    
  .l-gNav-item--Subnav > li {
      padding-top:1.25em;
      width: 50%;
      padding-right: 1em;
  }

  .l-gNav-item--Subnav > li > a {
      padding-left:1.5rem;
  }

  .l-gNav-item--Subnav > li > a:before {
        content:"";
        margin-left: -2em;
        margin-right: 0.2em;
        width:1.8em;
        height:1em;
        background:url(../image/icon/ic-arrow-right02.png) no-repeat center center;
        background-size:contain;
        vertical-align:middle;
        margin-bottom:0.2em;
        display:inline-block;
  }
}

/*----------------------------------------------------------------------------------------------------

  Contents
  
----------------------------------------------------------------------------------------------------*/

.l-ct {
    width:100%;
    max-width:1200px;
    min-width: 640px;
    margin-left:auto;
    margin-right:auto;
    display:flex;
    justify-content: space-between;
    padding-top:50px;
    text-align:left;
}

.l-ct.no-flex {
    display: block;
}

@media screen and (max-width:1240px) {
    .l-ct {
        width: calc(100% - 40px);
        margin-left:20px;
        margin-right:20px;
    }
}

@media screen and (max-width:1020px) {
    .l-ct {
        flex-wrap: wrap;
    }
}



/*--------------------------------------------------------------------------------
  visual
--------------------------------------------------------------------------------*/

.l-ctVisual {
  background-repeat:no-repeat;
  background-color:#ddf3fa;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
}

.l-ctVisual__ttl {
  width:100%;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.4;
  text-align:left;
  color:#52c5eb;
  padding-left:1em;
  letter-spacing:0.05em;
  text-shadow: 
    2px  2px 0 #fff,
    -2px  2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff,
    2px  0 0 #fff,
    0  2px 0 #fff,
    -2px  0 0 #fff,
    0 -2px 0 #fff;
}

.l-ctVisual {
    min-height:160px;
    background-position:top center;
}

.pagetitle__inner {
    width: calc(100% - 4em);
    display: flex;
    align-items: center;
    position: relative;
    padding: 2em 0;
    margin: 0 2em;
}

.pagetitle__ttlWrap {
    position: relative;
    min-width: 600px;
    overflow: hidden;
    margin: 0 auto;
    background-color: rgba(66,191,221,.8);
    padding: 1.5em 2em;
    color: #fff;
    text-align: center;
    border:2px solid #fff;
    border-radius: 1em;
}

.pagetitle__ttl {
    line-height: 1.2;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.8);
    padding: 0 0.5em 0.25em;
    font-weight: 500;
}
@media screen and (max-width:750px) {
    .pagetitle__ttl {
        padding: 0 0 0.25em;
    }
}

.pagetitle__ttl::after,
.pagetitle__ttl::before {
    content: '';
    display: block;
    height: 0;
    width: 0;
}

.pagetitle__ttl+* {
    margin-top: 1em;
}


/*----------------------------------------------------------------------------------------------------

  Contents > Main
  
----------------------------------------------------------------------------------------------------*/

@media print,screen and (min-width:1021px) {
    .l-main {
        order:2;
        width: calc(100% - 280px);
        padding: 1.5em 0 1.5em 2em;
        box-sizing: border-box;
    }
}

@media screen and (max-width:1020px) {
    .l-main {
        order:2;
        width: 100%;
        padding: 1.5em 0;
        box-sizing: border-box;
    }
}

.no-flex .l-main {
    width: 100%;
    padding: 1.5em 0;
}

.l-main section {
    padding-top: 3em;
    margin-top: -3em;
    margin-bottom: 3.5em;
}

.l-main .sec-title {
    padding: 1em;
    border-radius: 0.75em;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.4;
    background-color: #ddf3fa;
}

.l-main .sec-inner {
    margin: 1.5em;
}
@media screen and (max-width:750px) {    
    .l-main .sec-inner {
        margin: 1.5em .75em;
    }
}


.l-main .sec-inner strong {
    color:#42bfdd;
    font-size: 1.5em;
    font-weight: 500;
}

.l-main .sec-inner .desc-box {
    border-bottom: 1px solid #ccc;
    padding-bottom: 2em;
    margin-bottom: 2em;
}



/*--------------------------------------------------------------------------------
  パンくず
--------------------------------------------------------------------------------*/

.l-pan {
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  font-size:0.8em;
}

.l-pan li:not(:last-child):after {
  content:"";
  width:2.2rem;
  height:1em;
  display:inline-block;
  background:url(../image/icon/ar_black.png) no-repeat center center;
  background-size:auto 0.8rem;
  vertical-align:middle;
  margin-bottom:0.2em;
}

@media print,screen and (min-width:751px) {
  .l-pan {
    padding-bottom:2.5rem;
  }
}

@media screen and (max-width:750px) {
  .l-pan {
    padding-bottom:2.5rem;
  }
}


/*--------------------------------------------------------------------------------
  page navigation
--------------------------------------------------------------------------------*/

.l-ct-pgNav {
  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;
}
  
.l-ct-pgNav__box {
  border:2px solid #8cd7f0;
  border-radius:4px;
  line-height:1.5;
}

.l-ct-pgNav__box .box__hd {
  background-color:#e8f7fc;
  border-radius:3px 3px 0 0;
  color:#42bfdd;
  font-size:1.11em;
}

.l-ct-pgNav__box .box__hd.no-link {
  padding:1.1rem 1.5rem 1.1rem 1.75rem;
}

.l-ct-pgNav__box .box__hd a {
  display:block;
  text-decoration:none;
  padding:1.1rem 1.5rem 1.1rem 3.8rem;
  position:relative;
}

.l-ct-pgNav__box .box__hd a:before {
  content:"";
  margin-left:-2.2rem;
  width:2.2rem;
  height:1em;
  background:url(../image/icon/arC_lblue.png) no-repeat left center;
  background-size:auto 1.4rem;
  vertical-align:middle;
  margin-bottom:0.2em;
  display:inline-block;
}

.l-ct-pgNav__box .box__body {
  font-size:0.9em;
}

.l-ct-pgNav__box .box__body .cmt {
  border-top:1px solid #bfe8f6;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
  -webkit-box-align:start;
  -ms-flex-align:start;
  align-items:flex-start;
}

.l-ct-pgNav__box .box__body p {
  -webkit-box-flex:1;
  -ms-flex:1;
  flex:1;
}

.l-ct-pgNav__box .box__body .tmb {
  display:block;
}

.l-ct-pgNav__box .box__body ul {
  list-style:none;
  border-top:1px solid #bfe8f6;
}

.l-ct-pgNav__box .box__body li a {
  display:block;
  position:relative;
}

.l-ct-pgNav__box .box__body li a:before {
  content:"";
  margin-left:-2.2rem;
  width:2.2rem;
  height:1em;
  background:url(../image/icon/ar_lblue.png) no-repeat center center;
  background-size:auto 1rem;
  vertical-align:middle;
  margin-bottom:0.2em;
  display:inline-block;
}

.l-ct-pgNav__box .box__body li a,
.l-ct-pgNav__box .box__body li a:visited { color:inherit; text-decoration:none; }
.l-ct-pgNav__box .box__body li a:hover,
.ua-pc .l-ct-pgNav__box .box__body li a:hover { color:#42bfdd; text-decoration:none; }

@media print,screen and (min-width:751px) {
  .l-ct-pgNav {
    margin-bottom:-2rem;
  }
  
  .l-ct-pgNav__box {
    width:-webkit-calc(50% - 1rem);
    width:calc(50% - 1rem);
    margin-bottom:2rem;
  }
  
  .l-ct-pgNav__box .box__body .cmt {
    padding:2rem;
  }
  
  .l-ct-pgNav__box .box__body .tmb {
    width:120px;
    margin-left:2rem;
  }
  
  .l-ct-pgNav__box .box__body ul {
    padding:1.5rem 1.5rem 1.5rem 3.25rem;
  }
  
  .l-ct-pgNav__box .box__body li a {
    padding:0.25rem;
  }
  
  .l-ct-pgNav__box .box__body ul.cols {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }

  .l-ct-pgNav__box .box__body ul.cols > li {
    padding-right:1em;
    white-space:normal;
  }
  
  .l-ct-pgNav__box .box__body ul.cols--2 > li {
    min-width:50%;
  }
}

@media screen and (max-width:750px) {
  .l-ct-pgNav__box {
    width:100%;
  }
  
  .l-ct-pgNav__box:not(:last-child) {
    margin-bottom:2rem;
  }

  .l-ct-pgNav__box .box__hd.no-link {
    padding:1.1rem 1.5rem;
  }
  
  .l-ct-pgNav__box .box__body .cmt {
    padding:1.5rem;
  }
  
  .l-ct-pgNav__box .box__body .tmb {
    width:30%;
    max-width:120px;
    min-width:80px;
    margin-left:1.5rem;
  }
  
  .l-ct-pgNav__box .box__body ul {
    padding:1.5rem 1.5rem 1.5rem 3rem;
  }
  
  .l-ct-pgNav__box .box__body li a {
    padding:0.25rem 0;
  }
}


/* icon
----------------------------------------------------------------------*/

.l-ct-pgNavIcon {
  list-style:none;
}

.l-ct-pgNavIcon li {
  border:2px solid #8cd7f0;
  background-color:#fff;
  border-radius:4px;
  font-weight:bold;
  line-height:1.4;
  color:#42bfdd;
}

.l-ct-pgNavIcon li a,
.l-ct-pgNavIcon li a:visited
.l-ct-pgNavIcon li a:hover,
.ua-pc .l-ct-pgNavIcon li a:hover { text-decoration:none; }

.l-ct-pgNavIcon li a {
  height:100%;
  border-radius:3px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:start;
  -ms-flex-pack:start;
  justify-content:flex-start;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  background-repeat:no-repeat;
}

.ua-pc .l-ct-pgNavIcon li a {
  background-color:#fff;
  transition:color 0.1s ease, background 0.1s ease;
}

.ua-pc .l-ct-pgNavIcon li a:hover {
  background-color:#eff9fd;
}

.l-ct-pgNavIcon li .pgNav__txt {
  display:inline-block;
  position:relative;
}

.l-ct-pgNavIcon li a .pgNav__txt:before {
  content:"";
  margin-left:-2.4rem;
  width:2.4rem;
  height:1em;
  background:url(../image/icon/arC_lblue.png) no-repeat left center;
  background-size:auto 1.6rem;
  vertical-align:middle;
  margin-bottom:0.2em;
  display:inline-block;
}

@media print,screen and (min-width:751px) {
  .l-ct-pgNavIcon {
    margin-bottom:-2rem;
  }
  
  .l-ct-pgNavIcon li {
    font-size:1.05em;
    width:-webkit-calc(50% - 1rem);
    width:calc(50% - 1rem);
    margin-bottom:2rem;
  }
  
  .l-ct-pgNavIcon li a {
    padding:2.2rem 8rem 2.2rem 4.2rem;
    background-position:right 1.75rem center;
    background-size:4.2rem;
  }
  
  .l-ct-pgNavIcon li .no-link {
    padding:2.2rem 8rem 2.2rem 2rem;
  }
}

@media print,screen and (min-width:561px) {
  .l-ct-pgNavIcon {
    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;
    margin-bottom:-2.5%;
  }
  
  .l-ct-pgNavIcon li {
    width:48.75%;
    margin-bottom:2.5%;
  }
}

@media screen and (max-width:750px) {  
  .l-ct-pgNavIcon li a {
    padding:1.7rem 7rem 1.7rem 3.6rem;
    background-position:right 1.25rem center;
    background-size:3.5rem;
  }
  
  .l-ct-pgNavIcon li .no-link {
    padding:1.7rem 7rem 1.7rem 1.5rem;
  }
  
  .l-ct-pgNavIcon li a .pgNav__txt:before {
    margin-left:-2.2rem;
    width:2.2rem;
    background-size:auto 1.4rem;
  }
}

@media screen and (max-width:560px) {
  .l-ct-pgNavIcon li:not(:last-child) {
    margin-bottom:1.75rem;
  }
}

.ic-new-page,
.ic-anker-link {
    display: inline-block;
    width: 1em;
    margin-left: 0.5em;
    margin-right: 0.25em;
    line-height: 1.2;
}


/*--------------------------------------------------------------------------------
  ページ戻り
--------------------------------------------------------------------------------*/

.l-ctBack {
  display:block;
  border-top:1px solid #dcdcdc;
  margin-top:1rem;
  padding-top:1.5rem;
}

.l-ctBack a {
  display:inline-block;
  padding-top:0.5rem;
}

@media screen and (max-width:750px) {
  .l-ctBack {
    padding-bottom:1rem;
  }
}


/*--------------------------------------------------------------------------------
  診療科と診療日・受付時間
--------------------------------------------------------------------------------*/

.l-timetable {
  width:100%;
  border:0;
  border-collapse:separate;
}

.l-timetable th,
.l-timetable td {
  line-height:1.4;
  vertical-align:middle;
  text-align:center;
}

.l-timetable thead th {
  border:2px solid #7ab4ed;
  background-color:#7ab4ed;
  font-weight:bold;
  color:#fff;
  font-size:1.1em;
  border-radius:4px 4px 0 0;
  position:relative;
  padding:1.25rem;
}

.timetable__update {
  position:absolute;
  right:1em;
  bottom:1.2rem;
  font-size:0.8em;
  font-weight:normal;
}

.l-timetable thead th,
.l-timetable tbody th {
  white-space:nowrap;
}

.l-timetable tbody tr:first-child th,
.l-timetable tbody tr:nth-child(n+2) th {
  background-color:#e7f1fb;
  font-weight:normal;
}

.l-timetable tbody tr:nth-child(n+2) th a { font-weight:bold; }

.ua-pc .l-timetable tbody tr:nth-child(n+2) .js__linkBox {
  transition:background 0.1s ease;
}

.ua-pc .l-timetable tbody tr:nth-child(n+2) th.js__linkBox:hover {
  background-color:#f1f7fd;
}

.l-timetable tbody tr:first-child th:first-child,
.l-timetable tbody tr:nth-child(n+2) th {
  border-left:2px solid #a8cef3;
}

.l-timetable tbody th,
.l-timetable tbody td {
  border-right:1px solid #a8cef3;
  border-bottom:1px solid #a8cef3;
  padding:1rem;
  font-size:0.9em;
}

.l-timetable tbody th:last-child,
.l-timetable tbody td:last-child {
  border-right-width:2px;
}

.l-timetable tbody tr:last-child th,
.l-timetable tbody tr:last-child td {
  border-bottom:2px solid #a8cef3;
}

.l-timetable tbody tr:last-child th {
  border-radius:0 0 0 4px;
}

.l-timetable tbody tr:last-child td:last-child {
  border-radius:0 0 4px 0;
}

.l-timetable tbody td.rsv { background:url(../image/pattern/stripe_yellow.png) repeat left top; }
.l-timetable tbody td.cls { background:url(../image/pattern/stripe_gray.png) repeat left top; }

@media screen and (max-width:750px) {
  .l-timetable tbody th,
  .l-timetable tbody td {
    font-size:0.85em;
  }
}


/* 各科の休診情報 */
.l-kyusin-ka {
  list-style:none;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}

.l-kyusin-ka li {
  padding-bottom:0.25em;
}

.l-kyusin-ka li:not(:last-of-type) {
  padding-right:1.5rem;
}


/*----------------------------------------------------------------------------------------------------

  Contents > Side
  
----------------------------------------------------------------------------------------------------*/

@media print,screen and (min-width:1021px) {
    #side {
        order:1;
        width: 280px;
        box-sizing: border-box;
        padding: 1.5em 2em 1.5em 0;
        border-right: 1px solid #ccc;
    }
}

@media screen and (max-width:1020px) {
    #side {
        order:1;
        width: 100%;
        padding-bottom: 2em;
        margin-bottom: 1.5em;
        border-bottom: 1px dotted #ccc;
    }
}

@media screen and (min-width:1021px) {
    #side nav {
        top: 30px;
        position: sticky;
        position: -webkit-sticky;
    }
}
@media screen and (max-width:1020px) {
    #side .sidelist {
        display: flex;
        flex-wrap: wrap;
        padding-left: .5em;
    }
}

#side .sidelist > li {
    list-style: none;
    padding-top:1.25em;
}
    
#side .sidelist > li:first-child {
    padding-top:0;
}

@media screen and (max-width:1020px) {
    #side .sidelist > li {
        width: 100%;
    }    
}

#side .sidelist > li > a,
#side .sidelist > li > .nolink {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: 0.2s all;
    padding-left:1.5em;
}

#side .sidelist > li > a:before,
#side .sidelist > li > .nolink:before {
    content:"";
    margin-left: -2em;
    margin-right: 0.2em;
    width:1.8em;
    height:1em;
    background:url(../image/icon/ic-arrow-right02.png) no-repeat center center;
    background-size:contain;
    vertical-align:middle;
    margin-bottom:0.2em;
    display:inline-block;
}

#side .sidelist > li > a:hover {
    color: #42bfdd;
}

#side .side-select {
    width: 100%;
    padding:6px;
    border:1px solid #ccc;
    background-color:#fff;
    box-sizing:border-box;
}


/*--------------------------------------------------------------------------------
  リンク
--------------------------------------------------------------------------------*/

#link {
    width: 100%;
    padding: 36px 0;
    margin-top: 2.5em;
    background-color: #f0f6f6;
}

#link .link-inner {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#link .linklist {
    display: flex;
    justify-content: space-between;
}
#link .linkbox {
    display: block;
    width: calc(20% - 12px);
    padding: 1em;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    color: inherit;
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
}
#link .linkbox .linkphoto {
    max-width: 263px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 1em;
}
#link .linkbox .linkphoto img {
    transition: 0.2s all;
}
#link .linkbox:hover .linkphoto img {
    transform: scale(1.1);
}
#link .linkbox .ic-arrow-right01 {
    display: inline-block;
    color: #42bfdd;
    width: 1em;
    margin-right: .5em;
    line-height: 1.1;
    transition: 0.2s all;
}
#link .linkbox:hover .ic-arrow-right01 {
    margin-left: .25em;
    margin-right: .25em;
}

@media screen and (max-width:1240px) {
    #link .link-inner {
        width: calc(100% - 40px);
        margin-left:20px;
        margin-right:20px;
    }
}
@media screen and (max-width:1020px) {
    #link .linklist {
        flex-wrap: wrap;
        max-width: 640px;
        margin: 0 auto;
    }
    #link .linkbox {
        width: calc(50% - 10px);
        margin-bottom: 20px;
        padding: 1em;
    }
    #link .linkbox .ic-arrow-right01 {
        margin-right: 0.5em;
    }
    #link .linkbox:hover .ic-arrow-right01 {
        margin-left: 0.1em;
        margin-right: 0.4em;
    }
}


/*----------------------------------------------------------------------------------------------------

  Footer
  
----------------------------------------------------------------------------------------------------*/

footer {
    padding-top: 48px;
    font-size: 16px;
}

.ft-inner {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.ft-logo {
    display: block;
    width: 337px;
    line-height: 1;
    margin-bottom: 36px;
}

.ft-nav {
    display: flex;
    justify-content: space-between;
}
.ft-nav .ft-nav-box {
    width: 16%;
    box-sizing: border-box;
}
.ft-nav .ft-nav-box:nth-of-type(2) {
    width: 20%;
}

.ft-nav .ft-nav-box a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s all;
}
.ft-nav .ft-nav-box a:hover {
    color: #42bfdd;
}
.ft-nav .ft-nav-title {
    font-weight: 500;
}
.ft-nav .ft-nav-list {
    list-style: none;
    margin-top: 16px;
}
.ft-nav a .ic-arrow-right01 {
    display: inline-block;
    width: 1em;
    margin-right: 0.75em;
    line-height: 1.1;
    transition: 0.2s all;
}
.ft-nav a:hover .ic-arrow-right01 {
    margin-left: 0.25em;
    margin-right: 0.5em;
}
.copyright-box {
    background-color: #42bfdd;
    color: #fff;
    padding: 1.5em 0;
    margin-top: 36px;
}
.copyright-box .ft-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright-box .copyright {
    order: 1;
}
.copyright-box .ft-subnav {
    order: 2;
}
.copyright-box .ft-subnav ul {
    list-style: none;
}
.copyright-box .ft-subnav li {
    display: inline-block;
    margin-right: 1.5em;
}
.copyright-box .ft-subnav li:last-child {
    margin-right: 0;
}
.copyright-box .ft-subnav a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s all;
}
.copyright-box .ft-subnav a:hover {
    color: rgba(255,255,255,0.8);
}
.copyright-box .ft-subnav .ic-arrow-right03 {
    display: inline-block;
    width: 0.6em;
    margin-right: 0.5em;
    line-height: 1.1;
}
@media screen and (max-width:1240px) {
    .ft-inner {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media screen and (max-width:1100px) {
    .ft-nav .ft-nav-box:nth-of-type(1) {
        width: 18%;
    }
    .ft-nav .ft-nav-box:nth-of-type(2) {
        width: 25%;
    }
    .ft-nav .ft-nav-box:nth-of-type(3),
    .ft-nav .ft-nav-box:nth-of-type(4),
    .ft-nav .ft-nav-box:nth-of-type(5) {
        width: 11%;
    }
    .ft-nav .ft-nav-box:nth-of-type(6) {
        width: 16%;
    }
}

@media screen and (max-width:820px) {
    .ft-logo {
        display: none;
    }
    .ft-nav {
        display: block;
    }
    .ft-nav .ft-nav-box:nth-of-type(1),
    .ft-nav .ft-nav-box:nth-of-type(2),
    .ft-nav .ft-nav-box:nth-of-type(3),
    .ft-nav .ft-nav-box:nth-of-type(4),
    .ft-nav .ft-nav-box:nth-of-type(5),
    .ft-nav .ft-nav-box:nth-of-type(6) {
        display: flex;
        width: 100%;
        padding: 0.75em;
        box-sizing: border-box;
        border-bottom: 1px solid #dcdcdc;
    }
    .ft-nav .ft-nav-box:nth-of-type(1) {
        border-top: 1px solid #dcdcdc;
    }
    .ft-nav .ft-nav-title {
        display: block;
        width: 50%;
        font-weight: 700;
    }
    .ft-nav .ft-nav-list {
        display: block;
        width: 50%;
        margin-top: 0;
        line-height: 2.4;
    }
    .copyright-box {
        margin-top: 48px;
        padding-top: 1em;
    }
    .copyright-box .ft-inner {
        display: block;
    }
    .copyright-box .copyright {
        order: 2;
    }
    .copyright-box .ft-subnav {
        order: 1;
        margin-bottom: 0.75em;
    }
    .copyright-box .ft-subnav ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .copyright-box .ft-subnav li {
        width: 50%;
        margin: 0.75em 0;
    }
    .copyright-box .copyright {
        text-align: center;
        border-top:1px solid #a1dfee;
        padding-top: 1em;
    }
}

@media screen and (max-width:750px) {   
    footer {
        font-size: 24px;
    }
    .ft-inner {
        width: calc(100% - 60px);
        margin-left: 30px;
        margin-right: 30px;
    }
}


/*--------------------------------------------------------------------------------
  back to top
--------------------------------------------------------------------------------*/

.l-backtoTop {
  position:fixed;
  bottom: 50px;
  right: 20px;
  pointer-events:auto;
  width:90px;
  height:90px;
  cursor:pointer;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  background-color:#fff;
  border:2px solid #42bfdd;
  border-radius:50%;
  color:#42bfdd;
}

.l-backtoTop-lo.is-noFix {
  position:absolute;
  bottom:inherit;
  left:0 !important;
}

.l-backtoTop__txt {
    display:block;
    line-height:1.2;
    font-size:14px; /* 文字サイズ固定 */
    text-align:center;
}

.l-backtoTop__icon {
  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;
}

.l-backtoTop__icon:after {
  content:"";
  display:inline-block;
  width:24px;
  height:24px;
  margin-top:6px;
  border-top:5px solid #42bfdd;
  border-right:5px solid #42bfdd;
  transform:rotate(-45deg);
}

.ua-pc .l-backtoTop {
  transition:border 0.1s ease, background 0.1s ease, color 0.1s ease;
}

.ua-pc .l-backtoTop:hover {
  border-color:#42bfdd;
  background-color:#42bfdd;
  color:#fff;
}

.ua-pc .l-backtoTop__icon:after {
  transition:border 0.1s ease;
}

.ua-pc .l-backtoTop:hover .l-backtoTop__icon:after {
  border-color:#fff;
}

@media screen and (max-width:750px) {
  .l-backtoTop-lo {
    display:none !important;
  }
}
