@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;300&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;300&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ページ内リンクの移動を滑らかに */
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: 'NotoSansJP';
  font-style: normal;
  font-weight: 400;
  font-weight: normal;
  src: url("../fonts/NotoSansJP-Regular.otf") format('opentype');
}
@font-face {
  font-family: 'bolder';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NotoSansJP-Black.otf") format('opentype');
}
/* 基本設定 */
body {
  -webkit-text-size-adjust: 100%;
  background: #fff;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Noto Sans JP';
}
p,li,address,h2,h3,h4,h5,h6 {
  line-height: 2;
  font-size: 1.6rem;
  letter-spacing: 0.64px;
  color: #000;
}
a{
  color: #000;
}
a:hover{
  opacity: .7;
}
h2,h3,h4,h5{
  margin: 0;
}
.indent{
    text-indent: -1em;
    padding-left: 1em;
}
.cp_cont {
  display: none;
}
.text-wrap {
  display: inline-block;
}
.container {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    position: relative;
}
.font_red {
  color: #E22608;
}
img {
  max-width: 100%;
  height: auto;
}
.pc_block {
  display: block;
}
.sp_block {
  display: none;
}
.sp_br {
  display: none;
}
.br_pad {
  display: none;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.indent {
  text-indent: -1em;
  padding-left: 1em;
}
.mt_10{margin-top: 10px;}
.mt_20{margin-top: 20px;}
.mt_30{margin-top: 30px;}
.mt_40{margin-top: 40px;}
.mt_50{margin-top: 50px;}
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_50{margin-bottom: 50px;}

:target::before{
  content: '';
  margin-top: -200px;
  height: 200px;
  display: block;
  visibility: hidden;
}

/* ==========================
フォント・色
============================= */
.bold{
    font-weight: bold;
}
.ft_60{
  font-size: 6rem;
}
.fs_16 {
  font-size: 1.6rem;
}

/* ==========================
amimation
============================= */
.fade{
  opacity: 0;
  transition: .5s ease-in-out;
}
.fade.fade--bot{
  transform: translate(0,100px);
}
.fade.fade--top{
  transform: translate(0,-100px);
}
.fade.fade--left{
  transform: translate(-100px,0);
}
.fade.fade--right{
  transform: translate(100px,0);
}
.fade.fadein{
  transform: translate(0,0);
  opacity: 1;
}
/* ==========================
fade_02
============================= */
.fade_02{
  animation: fadeup .5s ease-in-out forwards;
}
.delay_1 {
  animation: fadeup .5s ease-in-out forwards;
  animation-delay: .15s;
  opacity: 0;
}
.delay_2 {
  animation: fadeup .5s ease-in-out forwards;
  animation-delay: .3s;
  opacity: 0;
}
.delay_3 {
  animation: fadeup .5s ease-in-out forwards;
  animation-delay: .45s;
  opacity: 0;
}
.delay_4 {
  animation: fadeup .5s ease-in-out forwards;
  animation-delay: .6s;
  opacity: 0;
}
.delay_5 {
  animation: fadeup .5s ease-in-out forwards;
  animation-delay: .75s;
  opacity: 0;
}
.delay_6 {
  animation: fadeup .5s ease-in-out forwards;
  animation-delay: .9s;
  opacity: 0;
}
.delay_7 {
  animation: fadeup .5s ease-in-out forwards;
  animation-delay: 1.05s;
  opacity: 0;
}
.delay_8 {
  animation: fadeup .5s ease-in-out forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translate(0,100px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}


/* 子要素を順番にフェードイン */
.fade.fade--list{
  opacity: 1;
}
.fade_child{
  opacity: 0;
  transform: translate(0,100px);
  transition: .5s ease-in-out;
}
.fadein .fade_child{
  transform: translate(0,0);
  opacity: 1;
}
.fade_child:nth-child(1){
  transition-delay: 0.15s;
}
.fade_child:nth-child(2){
  transition-delay: 0.3s;
}
.fade_child:nth-child(3){
  transition-delay: 0.45s;
}
.fade_child:nth-child(4){
  transition-delay: 0.6s;
}
.fade_child:nth-child(5){
  transition-delay: 0.75s;
}
.fade_child:nth-child(6){
  transition-delay: 0.9s;
}
.fade_child:nth-child(7){
  transition-delay: 1.05s;
}
.fade_child:nth-child(8){
  transition-delay: 1.2s;
}
.fade_child:nth-child(9){
  transition-delay: 1.35s;
}


/* PCヘッダー */
header {
  position: fixed;
  background: rgba(255 , 255 , 255 , 1);
  height: 74px;
  width: 100%;
  margin: auto;
  z-index: 9999;
  top: 0;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 100%;
  margin: 0 auto;
  background: #0074BE;
}
.pc-header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
}
.hd_inner {
  width: calc(100% - 100px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.hd_left a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hd_left p {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0px;
  margin-bottom: 12px;
}
.hd_left p span {
  color: #0074BE;
}
.hd_right--list {
  height: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hd_right--list li {
  padding: 0 16px;
  border-left: 2px solid #019CE6;
}
.hd_right--list li:last-child {
  border-right: 2px solid #019CE6;
}

/* ページビジュアル */
.page_visual {
  position: relative;
  height: 317px;
  margin-top: 74px;
}
.page_visual_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.page_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.page_title h1 {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0px;
  line-height: 1.75;
  color: #FFF;
}
.page-pankuzu {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 15px;
}
.page-pankuzu li , .page-pankuzu li a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0px;
  color: #FFF;
}
.pankuzu-li a {
  text-decoration: underline;
}
.pankuzu-li::after {
  content: ">";
  margin: 0 10px;
}

/* お問い合わせ */
.contact {
  margin-top: 64px;
  padding-top: 220px;
  background: url("../img/contact_bg.png") no-repeat center;
  background-size: cover;
  height: 344px;
  position: relative;
}
.ft_contact {
  position: absolute;
  width: 100%;
}
.con_inner {
  max-width: 676px;
  height: 257px;
  background: transparent linear-gradient(111deg, #0074BE 0%, #009FE8 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.con_text {
  text-align: center;
  padding: 42px 0 36px;
}
.con_text p {
  color: #fff;
}
.con_text > .title {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.96px;
  color: #fff;
}
.con_text > .tel_box {
  margin: 20px 0 24px;
}
.con_text > .tel_box > .tel {
  font-size: 5.3rem;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  display: inline;
  margin-left: 48px;
}
.con_text > .tel_box > .tel > a {
  color: #fff;
}
.con_text > .tel_box > .tel > a::before {
  content: "";
  background: url("../img/tel_icon.svg") no-repeat center;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: -56px;
  transform: translateY(-50%);
}
.con_text > .mail {
  background: #fff;
  height: 50px;
  max-width: 240px;
  margin: 0 auto;
  position: relative;
}
.con_text > .mail > a {
  color: #0074BE;
  line-height: 2;
  letter-spacing: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  padding-left: 45px;
}
.con_text > .mail > a::before {
  content: "";
  background: url("../img/mail_icon.svg") no-repeat center;
  width: 22px;
  height: 16px;
  position: absolute;
  top: 55%;
  left: 20px;
  transform: translateY(-50%);
}

/* フッター */
footer {
  background: #000;
  padding: 162px 0 32px;
}
.ft_inner {
  margin-left: 128px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .ft_logo {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}
footer address {
  font-weight: 400;
  color: #fff;
}
footer .main_site {
  border: 1px solid #FFF;
  line-height: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
footer .main_site a {
  color: #fff;
  height: 100%;
  width: 100%;
  display: block;
  padding: 2px 0 2px 22px;
  position: relative;
}
footer .main_site a::after {
  content: "";
  background: url("../img/arrow.svg") no-repeat center;
  min-width: 6px;
  height: 11px;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  right: 22px;
}
.ft_nav {
  margin-right: 160px;
}
.ft_sitemap .arrow {
  display: inline-block;
  background: url("../img/arrow.svg") no-repeat center;
  background-size: contain;
  background-position: 0 0;
  min-width: 6px;
  height: 11px;
  margin-right: 10px;
}
.ft_flex {
  display: flex;
  gap: 100px;
}
.ft-top a , .ft_nav li a {
  font-weight: 400;
  color: #fff;
  vertical-align: text-bottom;
}

.copyright {
  background: #FFF;
  text-align: center;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page_top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 50px;
  opacity: 0.6;
  border-radius: 50%;
  right: 3%;
  z-index: 40;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  text-align: center;
  border: 3px solid #f6f6f6;
  border-radius: 50%;
  background: #0076C0;
}
#page_top a::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -0.3em;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: #fff 3px solid;
  border-right: #fff 3px solid;
  transform: rotate( -45deg );
}

/* ページ横ボタン */
.fixed_btn {
  position: fixed;
  top: 180px;
  right: 0;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  font-size: 2rem;
  letter-spacing: 1.8px;
  border: 2px solid #0074BF;
  width: 50px;
  height: 280px;
  padding: 20px 0 50px;
  z-index: 100;
  &:hover {
    opacity: 1;
    .text::after {
      content: "";
      background: url(../img/icon_on.svg) no-repeat center;
      transition: ease .8s;
    }
  }
}
.fixed_btn .text {
  position: relative;
  z-index: 3;
  color: #0074BF;
  &::after {
    content: "";
    background: url(../img/icon_off.svg) no-repeat center;
    width: 19px;
    height: 19px;
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fixed_btn:hover .text {
  color: #fff;
  transition: ease .8s;
}
.fixed_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #0074BF;
  width: 100%;
  height: 100%;
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}
.fixed_btn:hover::before {
  transform: scale(1, 1);
}

/* 第3階層共通 */
.third_content {
  margin-top: 80px;
  text-align: center;
}
.third_inner {
  max-width: 1024px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 20px #00000029;
  padding: 25px;
}
.category_box {
  text-align: left;
}
.category_box .category {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0px;
  display: inline-block;
  padding: 10px 12px;
}
.btn_box_outer {
  max-width: 716px;
  margin: auto;
}
.btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.btn , .detail_btn{
  max-width: 348px;
  height: 40px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: ease .8s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn {
  border: 2px solid #0074BF;
}
.detail_btn {
  background: #0074BF;
  position: relative;
  &::after {
    content: "";
    background: url(../img/detail_btn_icon.svg) center / cover no-repeat ;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
  }
}
.btn.w_348 , .detail_btn.w_348 {
  width: 348px;
}
.btn.mt_75 {
  margin-top: 75px;
  height: 50px;
}
.btn span {
  position: relative;
  z-index: 3;
  color: #0074BF;
}
.detail_btn span {
  position: relative;
  z-index: 3;
  color: #fff;
}
.btn:hover {
  opacity: 1;
}
.btn:hover span{
  color: #fff;
  transition: ease .8s;
}
.bgcenterx::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #0074BF;
  width: 100%;
  height: 100%;
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}
.bgcenterx:hover::before{
  transform:scale(1, 1);
}
/* カテゴリー色変更 */
.category_box .category.blue {
  background: #0076C0;
}
.category_box .category.green {
  background: #3BB906;
}
.category_box .category.orange {
  background: #ED6C0F;
}
.category_box .category.yellow {
  background: #F8B201;
}
.category_box .category.red {
  background: #E22608;
}
.category_box .category.skyblue {
  background: #019CE6;
}
.category_box .category.purple {
  background: #9B08C7;
}
.title_box {
  margin-top: 34px;
  text-align: center;
}
.title_box h2 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0;
}
.title_box h2 .sub_title {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  width: 100%;
  text-align: center;
}
.title_box p {
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0;
  margin-top: 30px;
}
.explanation_box {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}
.third_table {
  width: 532px;
  border-top: 1px solid #665C54;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.64px;
  line-height: 3.2rem;
}
.third_table tr {
  border-bottom: 1px solid #665C54;
  text-align: left
}
.third_table th {
  width: 150px;
  background: #EEEFEF;
  padding-left: 20px;
}
.third_table td {
  padding: 10px 10px 10px 20px;
}
.ex_right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
}
.third_back_btn {
  display: flex;
  justify-content: center;
  margin-top: 75px;
}
.third_back_btn .third_btn {
  width: 348px;
  height: 50px;
  background: #FFF;
  border: 2px solid #0074BF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.third_back_btn .third_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0074BF;
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (orientation: portrait) and (min-width: 768px){
  .con_text > .mail > a {
    white-space: nowrap;
  }
  .br_pad {
    display: block;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
/* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }
/* 共通パーツ
======================================================= */
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
  .container {
    margin: 0 5%;
  }
  .center {
    text-align: left;
  }
/* スマホメニュー 
====================================================================== */
.pc-header {
  display: none;
}
  header {
    height: 62px;
  }
.hd_left_sp a {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hd_left_sp p {
  display: inline-grid;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0px;
}
.hd_left_sp p span {
  color: #0074BE;
}
.cp_cont {
  display: flex;
  z-index: 99;
  height: 62px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, .2);
}
.cp_cont::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 100%;
  margin: 0 auto;
  background: #0074BE;
  z-index: 99999;
}
.cp_cont *,
.cp_cont *:before,
.cp_cont *:after {
  padding: 0;
  margin: 0;
}
  #sp_logo {
    margin-top: 10px;
    margin-left: 5%;
    width: 50%;
  }
  #sp_logo img {
    display: block;
  }
  .cp_offcm01 {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    z-index: 99;
  }
  /* menu */
  .cp_offcm01 .cp_menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 300px;
    height: 100%;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    background-color: #0074BE;
    opacity: 1;
    z-index: 99;
  }
  .cp_offcm01 .cp_menu .ff_ul {
    margin-top: 70px;
    padding: 0;
    padding-bottom: 100px;
  }
  .cp_offcm01 .cp_menu .ff_li {
    position: relative;
  }
  .cp_offcm01 .cp_menu ul.ff_ul li.ff_li a {
    position: relative;
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-weight: bold;
    font-size: 1.5rem;
  }
  .cp_offcm01 #cp_toggle01 {
    position: absolute;
    display: none;
    opacity: 0;
  }
  .cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    overflow-y: auto;
    -webkit-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
  }

  /* menu toggle */
  .cp_offcm01 #cp_toggle01 ~ label {
    position: relative;
    z-index: 999999;
    display: block;
    height: 30px;
    width: 30px;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    text-align: center;
    color: #fff;
    top: -10px;
    margin: 0 auto;
  }
  .cp_offcm01 #cp_toggle01 ~ label::before,
  .cp_offcm01 #cp_toggle01:checked ~ label::before {
    content: "";
    vertical-align: middle;
    display: inline-block;
    width: 50px;
    height: 30px;
  }
  .cp_offcm01 #cp_toggle01 ~ label::after {
    position: absolute;
    left: 0px;
    top: -3px;
    content: "MENU";
    display: block;
    width: 100%;
    color: #fff;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.4s;
    font-size: 1.0rem;
  }

  .cp_offcm01 #cp_toggle01:checked ~ label::after {
    content: "CLOSE";
    color: #fff;
    left: -1px;
  }
  .cp_offcm01,
  .cp_offcm01 span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
.cp_offcm01 {
    width: 62px;
    height: 62px;
    padding: 24px 10px;
    background: #0074BE;
}
  .cp_offcm01 span {
    position: absolute;
    right: 0px;
    width: 100%;
    border-radius: 1px;
    height: 2px;
    background-color: #fff;
  }
  .cp_offcm01 span:nth-of-type(1) {
    top: 15px;
  }
  .cp_offcm01 span:nth-of-type(2) {
    top: 22px;
  }
  .cp_offcm01 span:nth-of-type(3) {
    bottom: -2px;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
    background-color: #fff;
    top: 2px;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
    opacity: 0;
    background-color: #000;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    background-color: #fff;
    bottom: -15px;
  }
  /* ページビジュアル */
  .page_visual {
    height: 288px;
    margin-top: 62px;
  }
  .page_title {
    flex-direction: column-reverse;
    gap: 0;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .page_title p {
    text-align: center;
  }
  .page_title p img {
    width: 70%;
  }
  .page_title h1 {
    font-size: 2.6rem;
    letter-spacing: 3.4px;
  }
  .page-pankuzu {
    margin-bottom: 4px;
  }
  .page-pankuzu li , .page-pankuzu li a {
    font-size: 1.2rem;
    letter-spacing: 2.8px;
    line-height: 1.5;
  }
  
  /* フッター */
  .con_inner {
    width: 90%;
  }
  .con_text {
    padding-top: 48px;
  }
  .con_text > .tel_box > .tel {
    font-size: 3.6rem;
    margin-left: 38px;
  }
  .con_text > .tel_box > .tel > a::before {
    background-size: 30px;
    left: -44px;
  }
  .ft_inner {
    margin-left: 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .ft_sitemap {
    max-width: 420px;
    margin: auto;
  }
  .ft_sitemap .arrow {
    margin-right: 6px;
  }
  .ft_nav {
    margin: 24px auto 0;
  }
  .ft_nav li {
    line-height: 1.5;
    margin-bottom: 4px;
  }
  .ft_nav li a {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .ft_flex {
    gap: 0;
    flex-direction: column;
  }
  .copyright {
    height: 60px;
  }

  /* ページ横ボタン */
  .fixed_btn {
    top: 100px;
    font-size: 1.4rem;
    width: 35px;
    padding: 10px 0 30px;
    height: 200px;
  }
  .fixed_btn .text::after {
    bottom: -24px;
    transform: translateX(-50%) scale(.8);
  }
  /* 第3階層共通 */
  .third_content {
    margin-top: 40px;
  }
  .third_inner {
    width: 90%;
    margin: 0 auto;
  }
  .category_box .category {
    font-size: 1.8rem;
  }
  .title_box {
    margin-top: 18px;
    text-align: center;
  }
  .title_box h2 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .title_box p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 15px;
  }
  .explanation_box {
    flex-direction: column-reverse;
  }
  .third_table {
    width: 100%;
  }
  .ex_left {
    width: 100%;
    margin: 0 auto;
  }
  .ex_left .third_table th, .ex_left .third_table td {
    display: block;
    width: auto;
  }
  .ex_right {
    align-items: center;
  }
  .btn.w_348 , .detail_btn.w_348 {
    max-width: 320px;
  }
  .btn_box {
    flex-direction: column;
    gap: 20px;
  }
  .btn.mt_75 {
    margin-top: 35px;
    width: 90%;
  }
}

/* 印刷用設定 */
@media print {
  body {
    width: 1280px;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
  header {
    position: absolute;
    top: 0;
    left: 0;
  }
  .pc-header {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@page {
  size: A4;
  margin: 5px;
}