@charset "utf-8";
/* CSS Document */

/* reset
================================================== *
/* 
html5doctor.com Reset Stylesheet

*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* reset end---------------------------------------
================================================== *
/* 


/*==========================================================
__common
==========================================================*/

* {
  margin-left: auto; /* 左側マージンを自動的に空ける */
  margin-right: auto; /* 右側マージンを自動的に空ける */
}

body {
  font-size: 100%;
  overflow-x: hidden !important;
  line-height: 1.8em;
  font-family: "Noto Serif JP", serif;
  font-weight:var(--fw-normal);
}

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

a {
  color: var(--black);
  text-decoration: none;
}

.en {
    font-family: 'EB Garamond', serif;
    letter-spacing: 0.08em;
}


/*==========================================================
__グローバルメニュー
==========================================================*/

/*==========================================================
__共通コンテンツ
==========================================================*/
.pc {
  display: none !important;
}
.sp {
  display: block;
}

:root {
  --white: #fff;
  --black: #333;
  --lightblack: #3c3c3c;
  --text-gray: #737373;
  --green: #39b44a;
  --gray: #ccc;
  --lightgray: #f7f7f7;
  --blue: #005bac;
  --darkblue: #0f507d;
  --lightblue: #cfe1ef;
  --red-800: #e00000;
  --red-900: #d5131b;
  --rgb-accent-gray: 143 143 143;
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --inter: "Inter", sans-serif;
  --en: 'EB Garamond', serif;
  --fw-thin: 100;
  --fw-exlight: 200;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-exbold: 800;
  --fw-black: 900;
  --xl: 1280;
  --lg: 1024;
  --md: 768;
  --xs: 400;
  --pi: 3.14;
  --z-index-header: 10;
  --z-index-dialog: 9999;
  --opacity-hover: 0.7;
  --scale-hover: scale(1.05);
  --duration-default: 0.4s;
  --duration-scale: 0.6s;
  --easing-default: ease;
}

.mb {
  margin-bottom: 5px;
}

.mb1 {
  margin-bottom: 30px;
}

.mb2 {
  margin-bottom: 30px;
}

.mb3 {
  margin-bottom: 30px;
}

.mb4 {
  margin-bottom: 40px;
}

.mb5 {
  margin-bottom: 60px;
}

a.link__arrow:hover {
  color: var(--main-green);
  translate: 5% 0;
}


.pagetop {
  position: fixed;
  bottom: 5%;
  z-index: 2;
  right: 5%;
}

.pagetop a span {
  position: relative;
  display: inline-block;
  width: 40px;
  text-align: center;
  background: #202020c7;
  height: 40px;
  border-radius: 100%;
}

.pagetop a span i{
  color: var(--white);
  margin: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  font-size: 19px;
}


.common__padding {
  padding: 0 5%;
}

/*==========================================================
__//共通コンテンツ
==========================================================*/
p {
    font-size: 0.9em;
    line-height: 2;
    letter-spacing: .04em;
    font-weight: var(--fw-normal);
}

small.during {
    color: var(--text-gray);
    font-size: 90%;
   letter-spacing: .04em;
}



.h2__common {
  font-size: 1.4em;
  font-weight: var(--fw-bold);
  line-height: 1.8;
  color: var(--black);
}


.white {
  color: var(--white);
}

.br2 {
  display: block;
}

.br {
  display: none;
}

.bg-gray {
    background: #cce4f787;
}


/*==========================================================
__ヘッダーコンテンツ
==========================================================*/

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 14px 2.5%;
  background-color: var(--white);
  box-sizing: border-box;
  z-index: 999;
  border-bottom: 1px solid var(--gray);
}
header .header__inner .head__pc {
  display: none;
}


.logo a h1 span {
  display: block;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  font-size: 78%;
}

.logo a h1 small {
  font-size: 56%;
  line-height: 1;
  display: inline-block;
  margin: 0 4px 0 0;
  vertical-align: baseline;
}

.logo a h1 b{
  border: 1px solid;
  padding: 3px 9px;
  margin: 0 0 0 7px;
  display: inline-block;
  line-height: 1;
  text-align: center;
}

.logo a h1 {
  width: 130px;
  margin: auto;
}


.logo a h1 img{
  vertical-align:middle;
}


header .header__inner .head__sp__inner .head__flex .logo {
  width: 100%;
  text-align: center;
  display: block;
  margin: auto;
}
header .header__inner .head__sp__inner .head__flex .logo a {
  display: block;
}
header .header__inner .head__sp__inner .head__flex .logo figure {
  max-width: 170px;
}
header .header__inner .head__sp__inner .head__flex .logo figure img {
  width: 100%;
}
header .header__inner .head__sp__button {
  width: 40px;
  margin: 0;
}
header .header__inner .head__sp__button ul.head__button__list {
  display: flex;
  column-gap: 10px;
}

header .header__inner .head__sp__inner .head__flex .logo.a90th_logo {
    width: 29%;
    position: absolute;
    max-width: 140px;
}

.logo.a90th_logo a h1 {
    width: 100%;
}


header .header__inner .sp__nav__inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: 0%;
  padding: 20px 24px 110px;
  overflow-y: auto;
  background: var(--white);
  transition-timing-function: var(--easing-default);
  transition-duration: var(--duration-default);
  transition-property: visibility, height;
  overflow: scroll;

}
header .header__inner .sp__nav__inner:not(.active) {
  pointer-events: none;

  height: 0%;
  transform: translateY(-100%);
}
header .header__inner .sp__nav__inner.active {
  pointer-events: auto;

  height: 100vh;
  transform: translateY(0%);
}


header .header__inner .sp__nav__inner .logo.a90th_logo a h1{
  width: 90px;
  margin: 0 auto 30px;
}

header .header__inner .sp__nav__inner .logo a h1{
  width: 180px;
}

header.active,
header.sub.active {
  background: var(--white);
  border-bottom: none;
}




header.active .menu__hamburger__button .menu_op {
  margin-top: 20px;
}


header .header__inner .sp__nav__inner .sp__navs ul.sp__navs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 30px 0;
}
header
  .header__inner
  .sp__nav__inner
  .sp__navs
  ul.sp__navs__list
  li.sp__navs__item {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--gray);
}
header
  .header__inner
  .sp__nav__inner
  .sp__navs
  ul.sp__navs__list
  li:last-child {
  border-bottom: 1px solid var(--gray);
}
header
  .header__inner
  .sp__nav__inner
  .sp__navs
  ul.sp__navs__list
  li.sp__navs__item
  a.common__item {
  position: relative;
  display: flex;
  font-size: 1em;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  transition-timing-function: var(--easing-default);
  transition-duration: var(--duration-default);
  transition-property: color, padding;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.2;
  align-items: baseline;
  justify-content: left;
  width: 100%;
  padding-right: 8px;
}

header .header__inner .sp__nav__inner .sp__navs ul.sp__navs__list li.sp__navs__item a.common__item p{
  font-weight: var(--fw-light);
  font-size: 1.2em;
}

header .header__inner .sp__nav__inner .sp__navs ul.sp__navs__list li.sp__navs__item a.common__item small{
  font-size: 0.75em;
  padding: 0 0 0 8px;
}


/*==========================================================
__ハンバーガーメニュー
==========================================================*/
.hamburger__box {
  display: none !important;
}

.hamburger__box.active {
  display: block !important;
}

.hamburger__box__inner {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--white);
  padding: 90px 6%;
  height: 100%;
  z-index: 8;
}

div.hamburger {
  position: absolute;
  top: 0;
  z-index: 999999;
  background-color: var(--black);
  padding-top: 83px;
  padding-bottom: 35px;
  width: 100vw;
  transition: all 0.5s;
  overflow: hidden;
  opacity: 0;
  height: 100%;
  display: none;
}

div.hamburger.active {
  width: 100vw;
  max-width: 650px;
  background-color: var(--black);
  opacity: 1;
  height: 100vh;
  padding: 85px 25px 0;
  box-sizing: border-box;
  display: block;
}

.menu__hamburger__button {
  overflow: hidden;
  right: 15px;
  top: 60%;
  transform: translateY(-50%);
  display: block;
  width: 32px;
  margin: auto;
  position: absolute;
  right: 2.5%;
  z-index: 99999;
}


.head__sp.active .menu__hamburger__button {
    top: 50%;
}

.menu__hamburger__button .menu__hamburger {
  width: 34px;
  text-align: center;
  padding: 0;
  cursor: pointer;
}

.menu__hamburger__button .menu__line {
  display: block;
  width: 100%;
  height: 1px;
  transition: all 0.2s;
  background-color: var(--black);
  line-height: 1.5;
  margin: 0 0 7px;
}

.menu__hamburger__button .menu__line:nth-child(3) {
  margin: 0px;
}


.menu__hamburger__button .menu__line.active:nth-of-type(1) {
  transform: translateY(17px) rotate(134deg);
}

.menu__hamburger__button .menu__line.active:nth-of-type(2) {
  opacity: 0;
}

.menu__hamburger__button .menu__line.active:nth-of-type(3) {
  transform: translateY(1px) rotate(-132deg);
}

.menu__hamburger__button .menu_op.active {
  display: none;
}

.menu__hamburger__button .menu_op.active {
  display: none;
}
.menu__hamburger__button .menu_op {
  font-size: 11px;
  color: var(--black);
  line-height: 1;
  display: block;
  margin-top: 10px;
  font-family: var(--outfit);
  letter-spacing: 0px;
}


.header__menu.active .menu__hamburger__button .menu_op {
  display: none;
}
.menu__hamburger__button .menu_close {
  font-size: 8px;
  line-height: 1;
  display: none;
  margin-top: 7px;
}
.header__menu.active .menu__hamburger__button .menu_close {
  display: block;
}
.menu__hamburger__button .menu_close.active {
  display: block;
}

/*==========================================================
__//ハンバーガーメニュー
==========================================================*/
/*==========================================================
__//ヘッダーコンテンツ
==========================================================*/


/*==========================================================
__フッターコンテンツ
==========================================================*/
footer {
  padding: 40px 0 60px;
  position: relative;
  z-index: 1;
}
footer .footer__inner .footer__nav {
  margin: 0 auto 0;
}

footer .footer__inner .footer__nav .footer__nav__inner .logo {
  text-align: center;
  margin: 0 auto 20px;
}
footer .footer__inner .footer__nav .footer__nav__inner .logo a {
  display: block;
  grid-area: logo;
}
footer .footer__inner .footer__nav .footer__nav__inner .logo figure img {
  width: 100%;
}

footer .footer__inner .footer__nav .footer__nav__inner .content__nav {
  margin-bottom: 60px;
}

footer .footer__inner .footer__nav .footer__nav__inner .content__nav em{
  font-size: 0.75em;
  text-align:center;
  display:block;
  margin: 0 auto 5px;
  letter-spacing: 0.05em;
  color: var(--black);
  font-family: var(--en);
  font-weight: var(--fw-semibold);
}

footer .footer__inner .footer__lower__inner {
  padding: 0 15px;
}

footer
  .footer__inner
  .footer__lower__inner
  .footer__lower__nav
  ul.footer__link__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.625rem;
}

footer
  .footer__inner
  .footer__lower__inner
  .footer__lower__nav
  ul.footer__link__list
  li.item
  a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  transition: opacity 0.4s ease;
  text-decoration: underline;
  text-decoration-thickness: 0.03125rem;
  text-underline-offset: 0.1875rem;
}
footer .footer__inner .footer__lower__inner .copyright {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--black);
  font-family: var(--en);
  text-align: center;
  font-weight: var(--fw-semibold);
}

footer .logo a h1 {
  margin: auto;
  font-weight: var(--fw-semibold);
  font-size: 0.8em;
  line-height: 2;
  display: block;
}

footer .logo a h1 img{
  display: block;
  margin: auto;
  width: 200px;
}

footer .logo a h1 b{
  margin: 9px auto 0;
  width: auto;
}



a.button {
  width: 100%;
  display: block;
  padding: 12px 0 12px 28px;
  max-width: 260px;
  border-radius: 50px;
  background: var(--white);
  font-weight: 500;
  margin: auto;
  transition: 0.4s;
  font-size: 0.9em;
  position: relative;
  border: 1px solid var(--blue);
  margin: 0 auto;
}

a.button:hover {
  background: var(--blue);
  color: var(--white);
}



ul.footer__link__list {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  max-width: 240px;
  margin: auto;
}

ul.footer__link__list li {
  margin: 0;
}

ul.footer__link__list li a {
  font-size: 25px;
  text-align: center;
  display: block;
}



#wrap.sub-wrap footer {
    background: var(--lightgray);
}


/*==========================================================
__//フッターコンテンツ
==========================================================*/



@media screen and (min-width: 480px) {
  /*==========================================================
__ヘッダーコンテンツ
==========================================================*/


  header .header__inner .head__sp__inner .head__flex {
    justify-content: flex-end;
  }

  header .header__inner .head__sp__button {
    margin-right: 20px;
  }

    /*==========================================================
__フッターコンテンツ
==========================================================*/

  footer .footer__lower__nav > small {
    font-size: 0.8em;
  }

}

@media screen and (min-width: 767px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }

  .br2 {
    display: none !important;
  }

  .br {
    display: block !important;
  }

  /*==========================================================
__//共通コンテンツ
==========================================================*/

  
  .h2__common {
    font-size: 1.8em;
  }

  .mb {
    margin-bottom: 20px;
  }

  .mb1 {
    margin-bottom: 30px;
  }

  .mb2 {
    margin-bottom: 40px;
  }

  .mb3 {
    margin-bottom: 80px;
  }

  .mb4 {
    margin-bottom: 100px;
  }

  .mb5 {
    margin-bottom: 150px;
  }

  /*==========================================================
__ヘッダーコンテンツ
==========================================================*/
.logo a h1 {
    width: 180px;
    transition-timing-function: var(--easing-default);
    transition-duration: var(--duration-default);
}

  header .header__inner .head__sp__inner .head__flex .logo.a90th_logo {
    width: 170px;
}
 


  /*==========================================================
__//ヘッダーコンテンツ
==========================================================*/

 

  
footer .footer__inner .footer__nav .footer__nav__inner .content__nav em {
    font-size: 0.85em;
    margin: 0 auto 20px;
}

ul.footer__link__list {
    max-width: 420px;
}

ul.footer__link__list li a {
    font-size: 40px;
}

footer .logo a h1 img {
    width: 100%;
}

footer .logo a h1 {
    width: 300px;
}

footer .footer__inner .footer__nav .footer__nav__inner .content__nav {
    margin-bottom: 110px;
}

footer {
    padding: 70px 0 70px;
}

}

@media screen and (min-width: 991px) {

.h2__common {
    font-size: 2.2em;
}


      #wrap.sub-wrap {
        overflow-x: initial;
    }
  
  /*==========================================================
__フッターコンテンツ
==========================================================*/

  footer .footer__inner .footer__nav .footer__nav__inner {
    grid-template-columns: auto min(62.0625vw, 43.25rem);
    justify-content: space-between;
  }

  footer .footer__inner .footer__nav .footer__nav__inner .others__link {
    order: 2;
    grid-column: 1 / 2;
    grid-row: 2 / 2;
    position: absolute;
    bottom: 6px;
    left: 0;
  }

  footer .footer__inner .footer__nav .footer__nav__inner .content__nav {
    margin-top: 70px;
    width: 100%;
  }
  footer
    .footer__inner
    .footer__nav
    .footer__nav__inner
    .content__nav
    ul.content__nav__list {
    grid-template-columns: 1fr 1fr;
    gap: 25px 25px;
    margin: 0 auto 20px;
  }
  footer
    .footer__inner
    .footer__nav
    .footer__nav__inner
    .content__nav
    ul.content__nav__list
    li.item {
    border-top: none;
    padding: 0;
  }
  footer
    .footer__inner
    .footer__nav
    .footer__nav__inner
    .content__nav
    ul.content__nav__list
    li.item:last-child {
    display: contents;
  }
  

  .footer__top {
    max-width: 1000px;
    margin: auto;
    gap: 40px;
  }



  footer .footer__inner .footer__nav .footer__nav__inner .logo {
    margin: 0 auto 40px;
  }

  footer
    .footer__inner
    .footer__nav
    .footer__nav__inner
    .content__nav
    ul.content__nav__list
    li.item
    ul.item__child {
    margin: 0;
  }

  /*==========================================================
__//フッターコンテンツ
==========================================================*/


}

@media screen and (min-width: 1200px) {
  .wrap-1040 {
    max-width: 1040px;
    margin: 0 auto;
    width: 90%;
  }

.wrap-1200 {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
  }

  .wrap-1522 {
    max-width: 1522px;
    margin: 0 auto;
    width: 90%;
  }


  .pagetop a span::after {
      font-size: 1em;
  }

  /*==========================================================
__//共通コンテンツ
==========================================================*/

  .h2__common {
    font-size: 2.5em;
    margin: 0;
  }

 
  .mb {
    margin-bottom: 10px;
  }

  .mb1 {
    margin-bottom: 40px;
  }

  .mb2 {
    margin-bottom: 60px;
  }

  .mb3 {
    margin-bottom: 120px;
  }

  .mb4 {
    margin-bottom: 150px;
  }

  .mb5 {
    margin-bottom: 180px;
  }

  a.button {
    font-size: 1.1em;
    padding: 30px 30px 30px 30px;
    max-width: 390px;
    font-weight: var(--fw-bold);
    border-width: 2px;
    text-align: center;
  }

  a.button span.p__icon {
    width: 50px;
    height: 50px;
}

a.button span.p__icon::after {
    mask-size: 21px auto;
}

.shading {
    padding: 50px;
}

  p{
    font-size:1em;
  }

  /*==========================================================
__ヘッダーコンテンツ
==========================================================*/

  header {
    padding: 20px 2.5% 0;
    transition-timing-function: var(--easing-default);
    transition-duration: var(--duration-default);
    background-color: transparent;
  }



  .logo a h1 b{
    margin: 0 0 0 12px;
  }
  header .header__inner .head__pc {
    display: block;
    flex-direction: row-reverse;
    align-items: center;
  }
  header .header__inner .head__pc .logo.a90th_logo {
    position: absolute;
    left: 2.5%;
    top: 50%;
    transform: translateY(-50%);
    width: 210px;
  }



  header .header__inner .head__pc .sub__nav .sub__nav__inner {
    display: flex;
  }


  header
    .header__inner
    .head__pc
    .sub__nav
    .sub__nav__inner
    .sub__box
    .sub__menu__anchor
    ul.sub__menu__list {
    display: flex;
    column-gap: 15px;
    align-items: center;
  }
  header
    .header__inner
    .head__pc
    .sub__nav
    .sub__nav__inner
    .sub__box
    .sub__menu__anchor
    ul.sub__menu__list
    li
    a {
    text-decoration: none;
    font-size: 1.3em;
    font-family: var(--outfit);
  }



  header .header__inner .global__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  }
  header .header__inner ul.global__menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 30px;
    transition: .3s;
  }

  header .header__inner ul.global__menu__list li a {
    position: relative;
    display: block;
    font-size: 0.9em;
    font-weight: var(--fw-semibold);
    line-height: 1.5;
    --icon-color: currentcolor;
    transition-timing-function: var(--easing-default);
    transition-duration: var(--duration-default);
    text-align: center;
    letter-spacing: 0.03em;
  }
  header .header__inner ul.global__menu__list li a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 0.0625rem;
    height: 1.3333333333em;
    margin-top: auto;
    margin-bottom: auto;
    /* content: ""; */
    background-color: var(--border-gray);
  }
  header .header__inner ul.global__menu__list li:last-child a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 0.0625rem;
    height: 1.3333333333em;
    margin-top: auto;
    margin-bottom: auto;
    content: "";
    background-color: var(--border-gray);
  }

header .header__inner .head__pc .sub__nav .sub__nav__inner .sub__box .sub__menu__anchor ul.sub__menu__list li.contact-b a.button span.p__icon {
    right: 6%;
    width: 30px;
    height: 30px;
}

header .header__inner .head__pc .sub__nav .sub__nav__inner .sub__box .sub__menu__anchor ul.sub__menu__list li.contact-b a.button span.p__icon::after {
    mask-size: 15px auto;
}

header {
    padding: 35px 5%;
}

header .header__inner .head__sp__inner .head__flex .logo {
    left: 2.5%;
}
  
  header .header__inner ul.global__menu__list li a:hover {
    color: var(--blue);
  }


  header .header__inner .head__sp {
    display: none;
  }

  header .header__inner .sp__nav {
    display: none;
  }

  .logo a h1 {
    max-width: 345px;
  }



  header.is-animation {
    background: #ffffffd1;
    padding: 25px 2.5%;
  }


  header.is-animation .header__inner .head__pc .logo a h1 {
  width: 150px;
  margin: 0;
  }

  header.is-animation .header__inner ul.global__menu__list li a {
    font-size: 0.9em;
    color: var(--black);
  }

  header.is-animation .header__inner ul.global__menu__list li a:hover {
    color: var(--blue);
  }

  header.is-animation .header__inner ul.global__menu__list {
    gap: 25px;
  }




  /*==========================================================
__//ヘッダーコンテンツ
==========================================================*/


  
  /*==========================================================
__フッターコンテンツ
==========================================================*/

  
  footer {
    padding: 30px 0;
  }
  .footer__top {
    display: block;
    width: auto;
    margin: 0;
  }

  .footer_company {
    width: 100%;
  }

  

  .footer__lower__nav {
    margin: 0;
  }

  
  footer .footer__inner .footer__nav .footer__nav__inner .content__nav {
    margin: 0;
    max-width: 220px;
  }

  ul.footer__link__list {
  max-width: 260px;
  }


  footer .footer__inner .footer__nav .footer__nav__inner {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
  }
  footer .footer__inner .footer__nav .footer__nav__inner .logo {
    width: 100%;
    margin: 0 auto;
  }
  footer .footer__inner .footer__nav .footer__nav__inner .logo a {
    width: 100%;
  }
 

  .footer__link {
    margin: 0 0 100px 0;
  }

  .footer__link ul.link__list li {
    margin: 0 8px;
  }

  footer
    .footer__inner
    .footer__nav
    .footer__nav__inner
    .content__nav
    ul.content__nav__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
    margin: 0 0 35px 0;
  }
  footer
    .footer__inner
    .footer__nav
    .footer__nav__inner
    .content__nav
    ul.content__nav__list
    li.item {
    width: 100%;
  }

  footer .footer__inner .footer__lower__inner{
    padding: 0;
  }
  
  footer .footer__inner .footer__lower {
    margin: 10px auto 0;
  }

  footer .footer__inner .footer__lower__inner .footer__lower__box {
    width: 370px;
  }

  footer
    .footer__inner
    .footer__lower__inner
    .footer__lower__nav
    ul.footer__link__list {
    margin: 0;
  }
  footer
    .footer__inner
    .footer__lower__inner
    .footer__lower__nav
    ul.footer__link__list
    li.item
    a {
    font-weight: normal;
    font-size: 0.8em;
  }

  footer .footer__inner .footer__lower__inner .copyright {
    margin: 0;
    font-size: 0.8em;
    /* text-align: left; */
  }

  .footer__inner {
    max-width: 1200px;
    margin: auto;
  }

  footer .footer__lower__nav > small {
    text-align: left;
    margin: 120px auto 0;
}

  footer .logo a h1{
    width: 210px;
  }

  footer .logo a h1 b{
    margin: 0 0 0 10px;
    padding: 3px 6px;
    font-weight: 400;
    font-size: 0.9em;
  }

  ul.footer__link__list li a {
    font-size: 21px;
}

footer .footer__inner .footer__nav .footer__nav__inner .content__nav em {
    margin: 0 auto 10px;
}

  .pagetop {
    right: 2%;
}

.pagetop a span {
    width: 70px;
    height: 70px;
}

.pagetop a span i {
    font-size: 34px;
}

  /*==========================================================
__//フッターコンテンツ
==========================================================*/
  
}

@media screen and (min-width: 1400px) {
  /*==========================================================
__ヘッダーコンテンツ
==========================================================*/

header {
    /* padding: 25px 2.5%; */
}


  header .header__inner ul.global__menu__list li a {
    font-size: 0.95em;
  }


  header .header__inner ul.global__menu__list {
    gap: 30px;
  }



header .header__inner .head__pc .sub__nav .sub__nav__inner .sub__box .sub__menu__anchor ul.sub__menu__list {
    gap: 30px;
}

  /*==========================================================
__フッターコンテンツ
==========================================================*/

  footer
    .footer__inner
    .footer__nav
    .footer__nav__inner
    .content__nav
    ul.content__nav__list {
    gap: 40px;
  }


}

@media screen and (min-width: 1699px) {
  /*==========================================================
__ヘッダーコンテンツ
==========================================================*/


  header .header__inner ul.global__menu__list li a {
    font-size: 1.1em;
  }


  header .header__inner ul.global__menu__list {
    gap: 35px;
  }



header .header__inner .head__pc {
    display: flex;
}

header .header__inner .global__menu {
    margin-top: 0;
}


}
