@charset "utf-8";

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}
h1, h2, h3, h4, h5 {
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  /* PC用 */
  html {
    font-size: 10px;
  }
  .inner {
    position: relative;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --sp-width: 375; /* SP横幅750pxの場合 */
  }

  /* SP用 */
  html {
    font-size: calc(100vw / var(--sp-width) * 10);  /* 10px相当サイズの算出 */
  }
  .inner {
    width: 100%;
    padding: 0 1.5rem;
    max-width: 100%;
    margin: auto;
  }
}

body {
  width: 100%;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  overflow: clip;
  position: relative;
}

/* ID登録用 */
i[id] {
  font-size: 0;
  display: block;
}

footer {
  text-align: center;
  font-size: 2rem;
}

section[class^="area"] {
  position: relative;
}

.mb-half {
  margin-bottom: 0.5em !important;
}
.mb1em {
  margin-bottom: 1em !important;
}

/* 
=================================================================================

▼▼▼　sec01　▼▼▼

=================================================================================
*/
.sec01_box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 1.5rem 5%;
  border-top: 1px solid #E87E00;
  border-bottom: 1px solid #E87E00;
  gap: 2rem;
}
.sec01_box > .right_box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.sec01_box > .login_box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {/* SP用 */
  .sec01_box {
    flex-wrap: wrap;
    text-align: center;
  }
  
}

/* 
=================================================================================

▼▼▼　sec02　▼▼▼

=================================================================================
*/
.sec02_box {
  text-align: center;
}
.sec02_box > .img + .img {
  margin-top: 1rem;
}

/* 
=================================================================================

▼▼▼　sec03　▼▼▼

=================================================================================
*/
/* .sec03_box_in */
.sec03_box_in {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.sec03_box_in > .center_box {
  flex: 1;
}
/* ul.list01 */
ul.list01 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
ul.list01 > li {
  min-width: 30rem;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
}
ul.list01 > li > .img_box img {
  width: 10rem;
  height: auto;
  max-width: 10rem;
  max-height: 10rem;
  object-fit: contain;
}
ul.list01 > li > .txt_box {
  flex: 1;
}
/* ▲ ul.list01 ▲ */
ol.category {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
}
ol.category > li > a {
  background: #E87E00;
  color: #fff;
  padding: 0 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {/* SP用 */
  ul.list01 > li {
    flex-wrap: wrap;
  }
  ul.list01 > li > .txt_box {
    padding: 0;
    margin: 0;
  }
  ul.list01 > li > .sp {
    min-width: 60vw;
    width: 100%;
  }
}
/* ▲ .sec03_box_in ▲ */

/* 
=================================================================================

▼▼▼　sec04　▼▼▼

=================================================================================
*/
.bnrs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
/* 
=================================================================================

▼▼▼　sec05　▼▼▼

=================================================================================
*/
ul.list02 > li {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
}
ul.list02 > li + li {
  margin-top: 2rem;
}
ul.list02 > li .left_box {
  background: #00509D;
  border-radius: 1rem;
  text-align: center;
  line-height: 1;
  width: 11rem;
  height: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.list02 > li .right_box {
  flex: 1;
}
ul.list02 > li .right_box .new {
  padding: 0 1em;
  border-radius: 1rem;
  color: #fff;
  background: #FFA500;
  display: table;
}
ul.list02 > li .right_box .sub_txt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1em;
}

/* 
=================================================================================

▼▼▼　色　▼▼▼

=================================================================================
*/
/* ▼ black ▼ */
.black { color: #000 !important; }
.bg_black { background: #000 !important; }
/* ▲ black ▲ */
/* ▼ orange ▼ */
.orange { color: #E87E00 !important; }
.bg_orange { background: #E87E00 !important; }
/* ▲ orange ▲ */
/* ▼ green ▼ */
.green { color: #37A9A2 !important; }
.bg_green { background: #37A9A2 !important; }
/* ▲ green ▲ */
/* ▼ cyan ▼ */
.cyan { color: #3095C6 !important; }
.bg_cyan { background: #3095C6 !important; }
/* ▲ cyan ▲ */
/* ▼ blue ▼ */
.blue { color: #00509D !important; }
.bg_blue { background: #00509D !important; }
/* ▲ blue ▲ */
/* ▼ yellow ▼ */
.yellow { color: #FFEA00 !important; }
.bg_yellow { background: #FFEA00 !important; }
/* ▲ yellow ▲ */
/* ▼ white ▼ */
.white { color: #fff !important; }
.bg_white { background: #fff !important; }
/* ▲ white ▲ */

/* 
=================================================================================

▼▼▼　文字　▼▼▼

=================================================================================
*/
.go {
  font-family: "Noto Sans JP", sans-serif;
}
.pop {
  font-family: "Poppins", sans-serif;
}
.m {
  font-weight: 500;
}
/* googleマテリアルアイコン */
body .material-icons-outlined {
  font-size: inherit;
}
/* 
=================================================================================

▼▼▼　header　▼▼▼

=================================================================================
*/
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s all;
  background: #fff;
}
header > .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 3%;
  transition: 1s all;
  min-height: var(--hamburger-size);
}
ul.header01 {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8rem;
}
@media screen and (min-width: 769px) {/* PC用 */
  ul.header01 {
    padding: 1rem 0;
  }
}
ul.header01 > li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 769px) {/* PC用 */
  ul.header01 > li.item01 {
    margin-left: 0;
    margin-right: auto;
  }
}
ul.header01 > li.hamburger_set {
  margin-right: 0;
}
ol.header02 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem 5rem;
  height: 100%;
  color: #fff;
}
ol.header02 > li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
h1 a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  
}
.mv {
  position: relative;
}
@media screen and (max-width: 768px) {/* SP用 */
  ul.header01 {
    gap: 1rem;
  }
  ul.header01 > li.item01 {
    width: 30%;
  }
  ul.header01 > li.item02 {
    width: 40%;
  }
}
/* 
=================================================================================

▼▼▼　メガメニュー　▼▼▼

=================================================================================
*/
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 11;
  transform: translateX(-100vw);
  transition: 1s all;
  opacity: 0;
  padding-top: 5rem;
}
ol.header02 > li:hover .megamenu {
  transform: translateX(0);
  opacity: 1;
}
.megamenu > .box {
  padding: 4rem 8rem 8rem;
  background: #fff;
  border-radius: 2rem;
  color: #000;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.2));
  /* overflow-y: scroll; */
  /* max-height: 70vh; */
}
/* ul.mega_area */
ul.mega_area {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4rem;
}
ul.mega_area > li.item01 {
  margin-right: auto;
}
ul.mega_area > li.item02 {
  flex: 1;
}
ol.mega_list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}
ul.mega_area > li > a,
ol.mega_list > li > a {
  border-bottom: 2px solid #F29600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding-right: 6rem;
  background: url(/img/arrow02.webp) right 1.7rem center / 1.3rem auto no-repeat;
}
ul.mega_area > li > a {
  border-bottom: none;
}
/* ▲ ul.mega_area ▲ */

/* 
=================================================================================

▼▼▼　背景色が伸びて出現　▼▼▼

=================================================================================
*/
/*全共通*/
.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }
  to {
    opacity:1;  
  }
}
/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;/*伸びる背景色の設定*/
  display: table;
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}

/* 
=================================================================================

▼▼▼　ハンバーガーメニュー　▼▼▼

=================================================================================
*/

/* ▼▼ トグルボタン ▼▼ */
:root {
  --hamburger-size: 6.5rem; /* ハンバーガーアイコンサイズ */
  --hamburger-line: 0.5; /* ハンバーガーアイコンの横線の長さ */
}
.hamburger_area {
  position: relative;
  z-index: 12;
}
.toggle_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
  width: var(--hamburger-size);
  height: var(--hamburger-size);
  transition: all 0.5s;
  cursor: pointer;
  margin: 0 0 0 auto;
  background: #E87E00;
  /* border-radius: 50%; */
}
.toggle_btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: calc((99.99% - (var(--hamburger-size) * var(--hamburger-line))) / 2);
  width: calc(var(--hamburger-size) * var(--hamburger-line));
  height: 0;
  border-top: calc(var(--hamburger-size) * 0.025) solid #fff;
  background-color: #fff;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  transform: translateY(calc(var(--hamburger-size) * -0.2));
}
.toggle_btn span:nth-child(2) {
}
.toggle_btn span:nth-child(3) {
  transform: translateY(calc(var(--hamburger-size) * 0.2));
}
/* オープン時 */
body.open .toggle_btn {
  box-shadow: none;
  background: rgba(12,48,97,0);
}
body.open .toggle_btn span {
  background-color: #000;
  border-top: calc(var(--hamburger-size) * 0.025) solid #000;
}
body.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(0) rotate(225deg);
  transform: translateY(0) rotate(225deg);
}
body.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-225deg);
  transform: translateY(0) rotate(-225deg);
}
body.open .toggle_btn span:nth-child(3) {
  opacity: 0;
}
/* ▼ ３ライン目をMENU/CLOSEという文字に変更 ▼ */
body.open .toggle_btn span:nth-child(1) {
  transform: translateY(calc(var(--hamburger-size) * -0.1)) rotate(225deg);
}
body.open .toggle_btn span:nth-child(2) {
  transform: translateY(calc(var(--hamburger-size) * -0.1)) rotate(-225deg);
}
body:not(.open) .toggle_btn span:nth-child(3) {
  border: none;
  color: #fff;
}
body.open .toggle_btn span:nth-child(3) {
  opacity: inherit;
  border: none;
}
body:not(.open) .toggle_btn span:nth-child(3):before {
  content: "MENU";
}
body.open .toggle_btn span:nth-child(3):before {
  content: "CLOSE";
}
/* ▲ ３ライン目をMENU/CLOSEという文字に変更 ▲ */
/* ▲▲ トグルボタン ▲▲ */

/* ▼ グローバルナビ ▼ */
.gloval-nav {
  background-color: #ffcf98;
  position: fixed;
  z-index: 11;
  top: 0;
  bottom: 0;
  right: 0;
  padding: var(--hamburger-size) 7rem 10rem;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  transform: translateX(100%);
  transition: 1s all;
  width: 58rem;
  max-height: 100vh;
}
.gloval_box {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.gloval-nav ul.gloval_ul > li {
opacity: 0;
transform: translateX(-200px);
transition:  transform .6s ease, opacity .2s ease;
border-top: 1px solid rgb(232, 126, 0);
}
.gloval-nav ul.gloval_ul > li:nth-child(2) { transition-delay: .1s; }
.gloval-nav ul.gloval_ul > li:nth-child(3) { transition-delay: .2s; }
.gloval-nav ul.gloval_ul > li:nth-child(4) { transition-delay: .3s; }
.gloval-nav ul.gloval_ul > li:nth-child(5) { transition-delay: .4s; }
.gloval-nav ul.gloval_ul > li:nth-child(6) { transition-delay: .5s; }
.gloval-nav ul.gloval_ul > li:nth-child(7) { transition-delay: .6s; }
.gloval-nav ul.gloval_ul > li:nth-child(8) { transition-delay: .7s; }
.gloval-nav ul.gloval_ul > li:nth-child(9) { transition-delay: .8s; }
.gloval-nav ul.gloval_ul > li:nth-child(n+10) { transition-delay: .9s; }

.gloval-nav ul.gloval_ul > li > a {
  display: block;
  transition: color .6s ease;
  padding: 2rem 1em 2rem 0;
}

/* open時 */
.open {
  overflow: hidden;
}
.open .hamburger_bg,
.open .gloval-nav {
visibility: visible;
transform: translateX(0);
transition: transform .6s;
}
.open .gloval-nav ul.gloval_ul > li {
opacity: 1;
transform: translateX(0);
transition: transform 1s ease, opacity .9s ease;
}
@media screen and (max-width: 768px) {/* SP用 */
  .gloval-nav {
    width: 80vw;
    padding: var(--hamburger-size) 1.5rem 5rem;
  }
}
/* ▲ グローバルナビ ▲ */

/* ▼ アコーディオン ▼ */
.ac_btn {
  padding: 2rem 1em 2rem 0;
  display: block;
  cursor: pointer;
  position: relative;
}
.ac_btn::before {
  content: "＋";
  position: absolute;
  top: calc((100% - 1em) / 2);
  right: 0;
  pointer-events: none;
  color: #000;
  line-height: 1;
  display: inline;
}
.ac_btn.active::before {
  content: "－";
}
ul.sub_gloval_ul {
  display: none;
}
ul.sub_gloval_ul > li {
  padding-left: 1em;
}
ul.sub_gloval_ul > li > a {
  color: #000;
  padding: 2rem 1em 2rem 0;
  display: block;
}
/* ▲ アコーディオン ▲ */

/* ▼ 背景網掛け ▼ */
.hamburger_bg {
  background-color: rgba(0,0,0,0.3);
  position: fixed;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  /* transition: 1s all; */
  width: 100vw;
  max-height: 100vh;
}
/* ▲ 背景網掛け ▲ */

/* 
=================================================================================

▼▼▼　パンくずリスト　▼▼▼

=================================================================================
*/
ul.pankuzu_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em 3em;
  flex-wrap: wrap;
}
ul.pankuzu_list > li {
  position: relative;
}
ul.pankuzu_list > li:not(:last-child):before {
  content: "/";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 100%;
  text-align: center;
  position: absolute;
  right: -2em;
}

/* 
=================================================================================

▼▼▼　ちらつき対策（CSS）　▼▼▼

=================================================================================
*/

.loading {
  position: fixed;
  background: #fff;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s all;
  opacity: 1;
  pointer-events: all;
}

/* 
=================================================================================

▼▼▼　SP用フローティングメニュー　▼▼▼

=================================================================================
*/

.floatig_menu {
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 3rem;
  width: 100%;
  background: #000;
  color: #fff;
  z-index: 9;
  transition: 1s all;
}

/* 
=================================================================================

▼▼▼　サンプルボタン　▼▼▼

=================================================================================
*/

/* ▼ btn01 ▼ */
.btn01 {
  display: table;
  width: auto;
  position: relative;
}
.btn01 > a {
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0.5em;
  color: #fff;
  filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.1));
}
.btn01 > a:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 1rem;
  top: 4px;
  left: 4px;
  border: 1px solid #fff;
  z-index: 1;
  pointer-events: none;
}
/* ▲ btn01 ▲ */

/* ▼ btn02 ▼ */
.btn02 > * {
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1.5em 1em 2.5em;
  gap: 1em;
  background: #000;
  color: #fff;
  transition: .5s all;
}
.btn02 > *:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background: #ccc;
  color: #000;
}
.btn02 > * .arrow {
  color: #000;
  background: #fff;
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5em;
  height: 2em;
  overflow: hidden;
  overflow: clip;
  position: relative;
}
.btn02:hover > * .arrow > * {
  animation: btn02_move .5s 1;
}
@keyframes btn02_move {
  0% { transform: translateX(0); }
  49% { transform: translateX(5em); }
  50% { transform: translateX(-5em); }
  51% { transform: translateX(-5em); }
  100% { transform: translateX(0); }
}
/* ▲ btn02 ▲ */

/* ▼ btn03 ▼ */
.btn03 {
  border-radius: 50vmin;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.3));
}
.btn03 > a {
  background: #C30D23;
  color: #fff;
  text-align: center;
  padding: 1em 1.5em 1em 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  overflow: clip;
  border-radius: 50vmin;
}
.btn03 > a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 50vmin;
  transform: translateX(-100%);
  transition: .5s all;
}
.btn03:hover > *::after {
  transform: translateX(0);  
}
/* ▲ btn03 ▲ */
/* ▼ btn04 ▼ */
.btn04 {
  border-radius: 50vmin;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.3));
}
.btn04 > * {
  background: #000;
  color: #fff;
  text-align: center;
  padding: .75em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* height: 100%; */
  position: relative;
  overflow: hidden;
  overflow: clip;
  border-radius: 50vmin;
}
.btn04 > * .txt {
  margin-left: auto;
  margin-right: auto;
}
.btn04 > * .arrow {
  margin-left: auto;
  margin-right: 0;
}
.btn04 > * .arrow i {
  width: 2em;
  height: 2em;
  font-size: 2rem;
  color: #000;
  background: #fff;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn04 > *::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 1) 100%,
    rgba(255, 255, 255, 0) 0%
  );
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
      transform: scale(0) rotate(25deg);
      opacity: 0;
  }

  50% {
      transform: scale(1) rotate(25deg);
      opacity: 1;
  }

  100% {
      transform: scale(50) rotate(25deg);
      opacity: 0;
  }
}
/* ▲ btn04 ▲ */
/* ▼ btn05 ▼ */
.btn05 {
  padding-bottom: 1rem;
}
.btn05 > a {
  text-align: center;
  padding: .4em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 1rem;
  color: #fff;
  background: #ff80ab;
  box-shadow: 0 1rem 0 #ea769c;
  transition: .5s all;
}
.btn05 > a:hover {
  box-shadow: 0 0 0 #ea769c;
  opacity: 1;
  filter: alpha(opacity=100);
  background: #e63862;
}
.btn05 > a small {
  font-size: 60%;
}
/* ▲ btn05 ▲ */
/* ▼ btn06 ▼ */
.btn06 {
}
.btn06 > a {
  text-align: center;
  padding: .4em 1em .4em 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50vmin;
  color: #e63862;
  background: #fff;
  border: 2px solid #e63862;
  transition: .5s all;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.1));
}
.btn06 > a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  color: #fff;
  background: #e63862;
}
.btn06 .txt {
  margin: auto;
}
/* ▲ btn06 ▲ */
@media screen and (max-width: 768px) {/* SP用 */
  .btn01 {
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
  }
  .btn01 > a {
    width: 100%;
    padding: 0.5em;
  }
}
/* 
=================================================================================

▼▼▼　タブメニュー　▼▼▼

=================================================================================
*/
.tabgroup{
}
.tab{
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}
.tab li{
  cursor: pointer;
  border-radius: 1rem;
  border: 2px solid #00509D;
  color: #00509D;
  text-align: center;
  background: #fff;
  min-width: 7em;
  padding: 0.25em 1em;
}
/*クラスに「active」が付与されたときの指定*/
.tab li.active{
  background: #00509D;
  color: #fff;
}
.tab-child {
  position: relative;
}
/*通常時は「display: none;」で非表示にしておく*/
.tab-child > li{
  display: none;
}
/*クラスに「active」が付与されたとき「display: block;」で表示する*/
.tab-child > li.active{
  display: block;
}
/* ▲ タブメニュー ▲ */

/* 
=================================================================================

▼▼▼　先頭へ戻る　▼▼▼

=================================================================================
*/

.go_head {
  border-radius: 50%;
  position: fixed;
  z-index:5;
  right: 5rem;
  bottom: -5rem;
  overflow: hidden;
  transition: 1s all;
  opacity: 0;
  filter: alpha(opacity=0);
}
.nav_active .go_head {
  bottom: 5rem;
  opacity: 1;
  filter: alpha(opacity=100);
}
.go_head > a {
  width: 3em;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}
.go_head > a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #E87E00;
  pointer-events: none;
  border-radius: 50%;
  transition: 1s all;
  z-index: -1;
}
.go_head > a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  pointer-events: none;
  border-radius: 50%;
  transform: scale(0);
  transition: 1s all;
  animation: go_head_remove 0.5s 1 forwards;
}
@keyframes go_head_remove {
  0% { transform: scale(1); }
  40% { transform: scale(0.4); }
  50% { transform: scale(0.6); }
  100% { transform: scale(0); }
}
.go_head:hover > a:after {
  animation: go_head_move 0.5s 1 forwards;
}
@keyframes go_head_move {
  0% { transform: scale(0); }
  40% { transform: scale(0.6); }
  50% { transform: scale(0.4); }
  100% { transform: scale(1); }
}
.go_head > a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.go_head > a .content {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {/* SP用 */
  .nav_active .go_head {
    bottom: 30vw;
  }
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　▼▼　以降SP用　▼▼
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 768px) {/* SP用 */
  body .fs24 { font-size: 2rem !important; }
  body .fs26 { font-size: 2.2rem !important; }
  body .fs30 { font-size: 2.4rem !important; }
  body .sp_fs20 { font-size: 2rem !important; }
  .sp_mb0 { margin-bottom: 0 !important; }
  ul.list01 .img_box {
    text-align: center;
  }
  ul.list01 > li > .img_box img {
    max-width: 60vw;
    max-height: 60vw;
  }
  ul.list01 .txt_box {
    margin: 1em 0;
  }
  ul.list02 > li {
    flex-wrap: wrap;
  }
  ul.list02 > li + li {
    margin-top: 4rem;
  }
  ul.list02 > li .left_box {
    width: 10rem;
    height: 10rem;
  }
  ul.list02 > li .right_box .sub_txt {
    display: block;
  }
  ul.list02 > li .right_box .new { font-size: 1.5rem !important; }
  .nav_active .go_head {
    bottom: 20vw;
    right: 2.5rem;
  }
  ul.list02 > li > .sp {
    min-width: 60vw;
    width: 100%;
  }
}