@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header {
  width: 100%;
  height: 80px;
}
@media screen and (min-width: 768px) {
  header {
    height: 90px;
  }
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) {
  header .inner {
    margin: 0 auto;
    padding: 0 30px;
  }
}
header .inner h1 {
  display: flex;
  align-items: center;
  max-width: 50%;
}
@media screen and (min-width: 768px) {
  header .inner h1 {
    width: auto;
    margin-right: 0;
  }
}
header .inner h1 .logo {
  width: auto;
  height: 40px; /* 40thlogo original 50 */
}
header .inner h1 .logo.new {
  height: 52px;
}
@media screen and (min-width: 768px) {
  header .inner h1 .logo {
    width: auto;
    height: 56px;
    max-height: none;
  }
  header .inner h1 .logo.new {
    height: 75px;
  }
}
header .inner .phonenum-wrap {
  text-align: right;
  width: 54%;
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap {
    display: flex;
    align-items: flex-start;
    width: auto;
    text-align: center;
    margin-right: -40px;
  }
}
header .inner .phonenum-wrap p {
  font-size: 10px;
  color: #e4007f;
  text-align: right;
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap p {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap p .tel {
    pointer-events: none;
  }
}
header .inner .phonenum-wrap p .phonenumber {
  width: auto;
  max-height: 16px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap p .phonenumber {
    width: auto;
    height: 35px;
    max-height: none;
    margin-bottom: 8px;
  }
}
header .inner .phonenum-wrap .btn img {
  width: 190px;
  height: 25px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  header .inner .phonenum-wrap .btn img {
    width: 280px;
    height: auto;
    margin-top: 10px;
  }
}
header .inner .btn-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  header .inner .btn-wrap {
    display: block;
    margin-left: 20px;
  }
  header .inner .btn-wrap a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 18px 0;
    border-radius: 60px;
    width: 200px;
  }
  header .inner .btn-wrap a.btn-blue {
    background-color: #41bfd6;
    color: #fff;
    margin-right: 10px;
  }
  header .inner .btn-wrap a.btn-yellow {
    background-color: #f6d130;
    color: #000;
  }
}

.gnav {
  z-index: 1;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}
.gnav::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(26, 26, 26, 0.98);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 100%;
  transform: scale(0.04), translateY(9999px);
  overflow: hidden;
}

.open .gnav {
  top: 0;
  pointer-events: auto;
}
.open .gnav::before {
  animation: menu-animation 0.4s ease-out forwards;
}

@keyframes menu-animation {
  0% {
    transform: scale(0);
  }
  99.9% {
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }
  100% {
    transform: scale(2);
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
  }
}
.gnav ul {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  backface-visibility: hidden;
  perspective: 1000;
  color: white;
}
.gnav ul li {
  opacity: 0;
  text-align: center;
  transform: translate3d(0, 36px, 0);
  margin-bottom: 5vh;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .gnav ul li {
    margin-bottom: 4vh;
  }
}
.gnav ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .gnav ul li a {
    font-size: 20px;
  }
}
.gnav ul li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  left: auto;
  background-color: #faec00;
  padding: 0;
  height: 100%;
  width: 0;
  overflow: hidden;
  transition: width 0.2s ease-out;
  pointer-events: none;
  z-index: 0;
}
.gnav ul li svg {
  position: relative;
  z-index: 10;
  height: 34px;
}
@media screen and (max-width: 768px) {
  .gnav ul li svg {
    height: 28px;
  }
}
.gnav ul li .cls-1 {
  fill: #fff;
  fill-rule: evenodd;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 900px) {
  .gnav ul li:hover:before {
    left: 0;
    right: auto;
    width: 100%;
  }
  .gnav ul li:hover .cls-1 {
    fill: #000;
  }
}
.open .gnav ul li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.open .gnav ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.open .gnav ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.open .gnav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.open .gnav ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.open .gnav ul li:nth-child(5) {
  transition-delay: 0.5s;
}
.open .gnav ul li:nth-child(6) {
  transition-delay: 0.6s;
}


/* ====================================
button
===================================== */
.btn {
margin-left: auto;
margin-right: auto;
display:flex;
align-items: center;
justify-content:center;
box-sizing: border-box;
position: relative;
text-decoration: none;
inline-size: fit-content; /* ボタンの論理サイズ */
touch-action: manipulation; /* スマホでボタンをタップした際の誤動作を防止 */
user-select: none; /* ボタンのテキストの意図しない選択 */
font-weight: 700;
line-height: 1;
transition: all 0.3s ease;
&:hover{text-decoration: none;}
 & svg[class^="icn"]{ position: absolute; right: 1em;}
}
* {
&:focus-visible {/* フォーカス時のoutline */ 
outline: 2px solid magenta;
outline-offset: 2px;
}
}

@media print, screen and (min-width: 768px){
.btn{ border-radius: 8px;}
}
@media only screen and (max-width: 767.98px){
.btn{ border-radius: 6px;
 & svg.icn-arrow{ width: 6vw; height: 6vw; right: 0.3em;}
 & svg.icn-modal{ width: 4.2vw; height: 4.2vw; right: 1em;}
}
}

.btn-primary{ background-color: #58CAE7; color: #000; margin: 0;
& svg[class^="icn"]{ fill: #000;}
&:hover{ background-color: #0072CE; color: #fff;
& svg[class^="icn"]{ fill: #fff;}
}
}

@media only screen and (max-width: 767.98px){
.btn-primary{ font-size: min(3.7vw,14px); padding: 1em 2.3em 1em 1em;}
}

.btn-secondary{ margin: 0 auto; background-color: #FFD500; color: #000; flex-direction: column; box-shadow: 4px 4px 3px rgba(0,0,0,.25);
&:hover{ box-shadow: 0 0 10px rgba(0,0,0,.8);}
}
.btn-secondary small,.btn-secondary span{ display: block;}

.btn-default{ border: 2px solid #0072CE; color: #0072CE;
&.btn-default-bg{ border: none; background-color: #0072CE; color: #fff;
& svg[class^="icn-"]{fill: #fff;}
}

& svg[class^="icn-"]{fill: #0072CE;}
&:hover{ background-color: #0072CE; color: #fff;
& svg[class^="icn-"]{ fill: #fff;}
}
}
.btn-default.btn-outline{ border-color: #fff; color: #fff;
& .icn-arrow{fill: #fff;}
&:hover{ background-color: #fff; color: #0072CE;
& .icn-arrow{fill: #0072CE;}
}
}

@media print, screen and (min-width: 768px){
.btn:hover .icn-arrow{ animation: move_icon 2s ease infinite;}
.btn:hover .icn-modal{ animation: scale_icon 2s ease infinite;}
}

@keyframes move_icon {
0% {
  right: 1em;
}
50% {
  right: 0.2em;
}
100% {
  right: 1em;
}
}
@keyframes scale_icon {
0% {
  scale: 1;
}
50% {
  scale: 1.8;
}
100% {
  scale: 1;
}
}

@media print, screen and (min-width: 768px){
.btn-lg{ font-size: 1.6rem; height: 50px; width: min(25.3%,304px);}
#header .btn-lg{margin: 0;}
.btn-secondary{ margin: 0 auto 30px; padding: 12px 4em; width: 450px; border-radius: 45px;
&:hover{ width: 500px;}
}
.btn-secondary .btn-txt-small{ font-size: 1.8rem;}
.btn-secondary .btn-txt{ font-size: 3rem; margin-top: 14px;}

.btn-default{ font-size: 1.8rem; width: 300px; height: 60px;}
.btn-default.btn-outline{font-size: 2rem;}
}
@media only screen and (max-width: 767.98px){
.btn-secondary{ width: min(85.7%,600px); padding: min(3.4vw,13px) 0 min(3.2vw,12px); border-radius: min(9.3vw,35px);}
.btn-secondary .btn-txt-small{ font-size: min(3.7vw,14px);}
.btn-secondary .btn-txt{ font-size: min(5.8vw,22px); margin-top: min(2.6vw,10px);}

.btn-default{ font-size: min(4.2vw,16px); width: min(85.7%,600px); height: min(16vw,60px);}

}

.icn-arrow{fill: #000; transition: all 0.3s ease-in;}

/* ------------------------------------------------
  footer
------------------------------------------------ */
#footer a {
  color: #000;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}

#footer > .top {
  background-color: #a0d7f0;
}

#footer > .top .inner {
  margin: 0 auto;
  padding: 32px 0;
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer > .top .inner .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footer > .top .inner .address {
  color: #00549e;
  font-size: 13px;
  font-size: 1.3rem;
  padding-left: 20px;
}

#footer > .top .inner .address .name {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

#footer > .top .inner .access {
  margin-left: auto;
}

#footer > .top .inner .access .btn {
  color: #00549e;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1;
  border: 1px solid #00549e;
  border-radius: 100px;
  background-color: #fff;
  padding: 12px 40px;
  display: inline-block;
  position: relative;
}

#footer > .top .inner .access .btn:before {
  content: "";
  background: url(../img/icon_access.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
  width: 16px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

#footer > .top .inner .access .btn span {
  display: inline-block;
  vertical-align: middle;
}

#footer > .middle .inner {
  margin: 0 auto;
  padding: 30px 45px;
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#footer > .middle .inner ul li {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  text-indent: -16px;
  padding-left: 16px;
}

#footer > .middle .inner ul li + li {
  margin-top: 0.9em;
}

#footer > .middle .inner ul li a::before {
  content: "";
  margin-top: -0.2em;
  margin-right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 4px;
  border-color: transparent transparent transparent #007bff;
  display: inline-block;
  vertical-align: middle;
}

#footer > .bottom {
  border-top: 1px solid #969696;
  padding: 15px 0;
}

#footer > .bottom .copyright {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #footer > .top .inner {
    margin: 0 4%;
    padding: 4% 0;
    display: block;
    width: auto;
  }

  #footer > .top .inner .txt {
    line-height: 1.4;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #footer > .top .inner .logo {
    width: 70px;
  }

  #footer > .top .inner .address {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
  #footer > .top .inner .address p {
    font-size: 1rem;
  }

  #footer > .top .inner .address .name {
    font-size: 1rem;
    margin-bottom: 0.2em;
  }

  #footer > .top .inner .access {
    text-align: center;
    margin-top: 2.89855%;
    margin-left: 0;
  }

  #footer > .top .inner .access .btn {
    font-size: 1.1rem;
    border-radius: 100px;
    padding: 0.8rem 2rem;
  }

  #footer > .top .inner .access .btn:before {
    margin-right: 1rem;
    width: 16px;
    height: 20px;
    width: 1.2rem;
    height: 1.5rem;
  }

  #footer > .middle .inner {
    margin: 0 4%;
    padding: 8% 0;
    display: block;
    width: auto;
  }

  #footer > .middle .inner ul + ul {
    margin-top: 0.9rem;
  }

  #footer > .middle .inner ul li {
    font-size: 1.2rem;
  }

  #footer > .middle .inner ul li + li {
    margin-top: 0.9rem;
  }

  #footer > .middle .inner ul li a::before {
    margin-top: -0.2em;
    margin-right: 1.2rem;
    border-width: 0.3rem 0 0.3rem 0.4rem;
  }

  #footer > .bottom {
    padding: 4.34783% 0;
  }

  #footer > .bottom .copyright {
    font-size: 1rem;
    line-height: 1.75;
  }
}
/* ------------------------------------------------
  end footer
------------------------------------------------ */
@font-face {
  font-family: "AdihausDIN-Bold";
  src: url("../fonts/AdihausDIN-Bold.eot");
  src: url("../fonts/AdihausDIN-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/AdihausDIN-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* -------------------------------------------------------
 base
---------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  color: #000;
  font-family:
    Poppins Bold,
    "Noto Sans JP",
    "Helvetica Neue",
    Helvetica,
    Arial,
    "游ゴシック体",
    YuGothic,
    "游ゴシック Medium",
    "Yu Gothic Medium",
    sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-size: 1rem;
}
* {
  box-sizing: border-box;
}

.inner {
  margin: 0 4%;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 1040px;
    margin: 0 auto;
    padding: 0 30px;
  }
  header .inner {
    width: calc(100% - 60px);
    max-width: 1220px;
  }
}

p {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 16px;
  }
}

small {
  font-size: 11px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  small {
    font-size: 12px;
  }
}

sup {
  vertical-align: super;
  font-size: 11px;
  padding-left: 5px;
}

.pink {
  color: #e4007f;
}

.center {
  text-align: center;
}

.tit {
  text-align: center;
}
.tit img {
  height: 10vw;
}
@media screen and (min-width: 768px) {
  .tit img {
    height: 60px;
  }
}

img {
  line-height: 0;
  vertical-align: bottom;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
  color: #ff7d05;
}

.asterisk {
  color: #ff7d05;
}

.kome {
  color: #ff007f;
}

.change-border01 {
  display: inline-block;
  color: #3498db;
  text-decoration: none;
  overflow: hidden;
}

.change-border01 {
  position: relative;
}

a {
  transition: opacity 0.2s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }
}

/* Effect1
 *************************************** */
.change-border01::after,
.change-border01::before,
.change-border01__inner::after,
.change-border01__inner::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.change-border01::after {
  height: 10px;
  left: 0;
  top: 0;
  width: 0px;
}

.change-border01::before {
  bottom: 0;
  height: 10px;
  right: 0;
  width: 0px;
}

.change-border01__inner::after {
  bottom: 0;
  height: 0px;
  left: 0;
  width: 10px;
}

.change-border01__inner::before {
  height: 0px;
  right: 0;
  top: 0;
  width: 10px;
}

/* hover */
/*
@include mins($breakpoint-tab) {
	.change-border01:hover::after,
	.change-border01:hover::before {
	    width: 100%;
	    width: 100%;
	}
	
	.change-border01:hover .change-border01__inner::after,
	.change-border01:hover .change-border01__inner::before {
	    height: 100%;
	    height: 100%;
	}
}
*/
img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  img {
    width: auto;
  }
}

.fancybox-slide--iframe .fancybox-content {
  height: 62%;
}

.fancybox-slide > * {
  padding: 70px 14%;
}

.modal_code .fancybox-close-small {
  position: absolute;
  top: inherit;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0);
  width: 60px;
  height: 25px;
  background-image: url("../img/modal_code/close_btn.png");
}
@media screen and (min-width: 768px) {
  .modal_code .fancybox-close-small {
    bottom: 0;
    width: 120px;
    height: 50px;
  }
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  position: fixed;
  background-color: transparent;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  z-index: 1000;
  cursor: pointer;
  background: none;
  background-color: #fff;
  display: block;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .fancybox-slide--image .fancybox-close-small,
  .fancybox-slide--iframe .fancybox-close-small {
    width: 60px;
    height: 60px;
  }
}
.fancybox-slide--image .fancybox-close-small::before,
.fancybox-slide--iframe .fancybox-close-small::before {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  border-top: 2px solid #e4007f;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .fancybox-slide--image .fancybox-close-small::before,
  .fancybox-slide--iframe .fancybox-close-small::before {
    top: 28px;
    left: 15px;
    width: 30px;
  }
}
.fancybox-slide--image .fancybox-close-small::after,
.fancybox-slide--iframe .fancybox-close-small::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  border-top: 2px solid #e4007f;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .fancybox-slide--image .fancybox-close-small::after,
  .fancybox-slide--iframe .fancybox-close-small::after {
    top: 28px;
    left: 15px;
    width: 30px;
  }
}

.fancybox-navigation button.fancybox-arrow--left {
  position: fixed;
  top: 50%;
  left: 6px;
  background: none;
  width: 24px;
  height: 24px;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.2s;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-135deg);
}
@media screen and (min-width: 768px) {
  .fancybox-navigation button.fancybox-arrow--left {
    position: absolute;
    left: 60px;
    width: 40px;
    height: 40px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
  }
  .fancybox-navigation button.fancybox-arrow--left:hover {
    opacity: 0.7;
  }
}
.fancybox-navigation button.fancybox-arrow--right {
  position: fixed;
  top: 50%;
  right: 20px;
  background: none;
  width: 24px;
  height: 24px;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.2s;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .fancybox-navigation button.fancybox-arrow--right {
    position: absolute;
    right: 60px;
    width: 40px;
    height: 40px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
  }
  .fancybox-navigation button.fancybox-arrow--right:hover {
    opacity: 0.7;
  }
}

.fancybox-button--fullscreen {
  display: none;
}

.fancybox-button--share {
  display: none;
}

.fancybox-slide--iframe .fancybox-content {
  width: 100%;
}

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 100%;
  height: 56vw;
  max-width: 100%;
  max-height: calc(100% - 88px);
  overflow: visible;
  /* background: #fff; */
}
@media screen and (min-width: 768px) {
  .fancybox-slide--iframe .fancybox-content {
    width: 80vw;
    height: 45vw;
  }
}

.btn-backtop {
  position: fixed;
  bottom: 96px;
  right: 10px;
  width: 50px;
  height: 50px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2000;
}
@media screen and (min-width: 768px) {
  .btn-backtop {
    bottom: 110px;
    right: 20px;
  }
}
.btn-backtop.active {
  visibility: visible;
  opacity: 1;
}

/* ページ下部フローティングボタン
======================================== */
.under {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 2000;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.under.active {
  visibility: visible;
  opacity: 1;
}
.under p {
  color: #fff;
  text-align: center;
  font-size: 10px;
  padding: 0 4%;
}
.under .btn-wrap {
  margin: 10px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  box-shadow: inherit;
}
.under .btn-wrap a {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 60px;
  width: 48%;
  height: 10vw;
  text-align: center;
}
.under .btn-wrap a.btn-yellow {
  box-shadow: none;
  font-size: 4vw;
  background-color: #f6d130;
  color: #000;
  border-width: 2px;
  padding-top: 3vw;
}
.under .btn-wrap a.btn-line {
  background-color: #02b902;
  color: #fff;
  border-width: 2px;
  font-size: 3.1vw;
  line-height: 1.3;
  padding-top: 1vw;
}
@media screen and (min-width: 768px) {
  .under p {
    width: auto;
    font-size: 14px;
  }
  .under .btn-wrap a.btn-yellow {
    padding-top: 18px;
    font-size: 26px;
  }
  .under .btn-wrap a.btn-line {
    font-size: 20px;
    line-height: 1.3;
    padding-top: 7px;
  }
  .under .btn-wrap {
    width: 670px;
    height: inherit;
  }
  .under .btn-wrap a {
    border: 2px solid #fff;
    height: 70px;
    width: 320px;
    font-size: 20px;
    border-radius: 8px;
    margin-top: 0;
  }
}

/* informationn */
.information {
  background-color: #eeeeee;
  text-align: center;
  color: #e4007f;
  padding: 3vw 0;
}
@media screen and (min-width: 768px) {
  .information {
    padding: 25px;
  }
}
.information p {
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .information p {
    font-size: 24px;
  }
}

/* #cover */
#cover {
  color: #000;
}
#cover .flexwrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap {
    flex-direction: row;
  }
}
#cover .flexwrap .kv {
  width: 100%;
  position: relative;
}
#cover .flexwrap .kv img {
  width: 100%;
}
#cover .flexwrap .kv .btn-play {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  width: 22vw;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .kv .btn-play {
    width: auto;
  }
}
#cover .flexwrap .kv .btn-play img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .kv .btn-play img {
    width: auto;
  }
}
#cover .flexwrap .inner {
  margin: 0;
  padding: 0 4% 40px;
  border: 15px solid #e4007f;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .inner {
    padding: 0 4%;
    width: 50%;
  }
}
#cover .flexwrap .inner h2 {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .inner h2 {
    text-align: left;
  }
}
#cover .flexwrap .inner h2 img {
  width: 85%;
}
#cover .flexwrap .inner p {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  #cover .flexwrap .inner p {
    font-size: 1.4vw;
  }
}
#cover .box {
  color: #fff;
  background-color: #0072CE;
  text-align: center;
  font-size: 4vw;
  margin: 0;
  padding: 20px 0 40px;
}
@media screen and (min-width: 768px) {
  #cover .box {
    margin: 0 auto;
    font-size: 24px;
    padding: 40px 0;
  }
}
#cover .accordion {
  box-sizing: border-box;
  border: solid 2px #e4007f;
  border-radius: 10px;
  font-size: 16px;
  margin: 40px 4% 0;
  padding: 20px;
}
#cover .accordion.open .btn_open {
  display: block;
}
@media screen and (min-width: 768px) {
  #cover .accordion.open .btn_open {
    display: none;
  }
}
#cover .accordion.open .btn_close {
  display: block;
}
@media screen and (min-width: 768px) {
  #cover .accordion.open .btn_close {
    display: none;
  }
}
#cover .accordion.open .block {
  display: none;
}
@media screen and (min-width: 768px) {
  #cover .accordion.open .block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  #cover .accordion {
    border: none;
    width: 900px;
    margin: 60px auto 0;
    font-size: 20px;
    padding: 00px;
  }
}
#cover .accordion h4 {
  font-size: 15px;
  margin-bottom: 17px;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #cover .accordion h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
  }
}
#cover .accordion p {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #cover .accordion p {
    text-align: center;
    font-size: 14px;
    color: #666;
  }
}
#cover .accordion .btn_open {
  cursor: pointer;
  margin-top: 20px;
  text-align: center;
}
#cover .accordion .btn_open a {
  font-size: 13px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e4007f;
  font-weight: 700;
}
#cover .accordion .btn_open a span {
  margin-left: 5px;
  width: 20px;
  display: inline-block;
}
#cover .accordion .btn_open a span img {
  width: 100%;
}
#cover .accordion .btn_close {
  cursor: pointer;
  margin-top: 20px;
  text-align: center;
}
#cover .accordion .btn_close a {
  font-size: 13px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e4007f;
  font-weight: 700;
}
#cover .accordion .btn_close a span {
  margin-left: 5px;
  width: 20px;
  display: inline-block;
}
#cover .accordion .btn_close a span img {
  width: 100%;
  transform: rotate(180deg);
}

.section1 .message {
  max-width: 900px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 40px 0 15px;
}
@media screen and (min-width: 768px) {
  .section1 .message {
    flex: auto;
    display: flex;
    padding: 40px 0;
  }
}
.section1 .message .photo {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section1 .message .photo {
    width: 45%;
    margin-right: 5%;
    flex: auto;
  }
  .section1 .message .photo div.pc,
  .section1 .message .photo div.photo1,
  .section1 .message .photo div.photo2 {
    margin: 100px 25px;
  }
}
.section1 .message .photo div.sp {
  margin: 0 35px;
}

.section1 .message .txt {
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .section1 .message .txt {
    width: 44%;
    flex: auto;
    margin-left: 6%;
  }
}

.section1 .message .txt p {
  letter-spacing: 0.08em;
  line-height: 2;
  margin: 30px 0;
  text-align: left;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .section1 .message .txt p {
    margin: 50px 0;
  }
}

.section1 .message .message-slider .slick-slide {
  margin: 0px;
  outline: none;
}
.section1 .message .photo .message-slider,
.section1 .message .photo .message-slider img {
  width: 100%;
}

.section1 .parent_concept {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 900px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .section1 .parent_concept {
    padding: 0;
  }
}

.section1 .parent_concept .movie {
  width: 100%;
  height: 50vw;
}
@media screen and (min-width: 768px) {
  .section1 .parent_concept .movie {
    width: 620px;
    height: 350px;
  }
}
.section1 .parent_concept .movie iframe {
  width: 100%;
  height: 100%;
}

.section1 .parent_concept h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  display: inline-block;
  background-color: #0072CE;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 10px;
  line-height: 1;
  font-feature-settings: "palt";
}
.section1 .parent_concept p {
  color: #0072CE;
  text-align: left;
  margin: 15px 0;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .section1 .parent_concept p {
    padding: 0;
  }
.section1 .parent_concept h3 {
  font-size: 20px;
  color: #fff;
  padding: 15px;
}
}


.interview {
  text-align: center;
  padding-bottom: min(11.2vw, 84px);
}
.interview h2 {
  margin: 0 auto 5.3vw;
  width: 37.2%;
}
.interview .hgroup {
  background-color: #def4fa;
  position: relative;
  padding-top: 7.4vw;
  padding-bottom: 15.2vw;
}
.interview .linkList {
  position: relative;
  top: -12vw;
}
.interview .linkList a {
  display: inline-block;
  background-color: #000;
}
.interview .linkList a:hover {
  opacity: 1;
}
.interview .linkList img {
  transition: opacity 0.3s ease;
}
.interview .linkList a:hover img {
  opacity: 0.8;
}
.interview .slick-slide a {
  margin: 0 10px;
}
.interview .slick-slide:not(.slick-current) img {
  opacity: 0.8;
}
.interview .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.interview .slick-dots,
.interview .slick-dots li {
  height: 10px;
}
.interview .slick-dots {
  bottom: -10px;
}
.interview .slick-dots li {
  background-color: #d6d6d6;
  border: none;
  width: 10px;
}

.interview .linkList:not(.slick-initialized) {
  margin-left: 6.6%;
  margin-right: 6.6%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media screen and (min-width: 768px) {

  .interview .hgroup {
    padding-top: 36px;
    padding-bottom: 78px;
  }
  .interview h2 {
    width: 186px;
    margin-bottom: 40px;
  }
  .interview .linkList {
    top: -56px;
  }
  .interview .slick-slide a {
    margin: 0 10px;
  }
  .interview .slick-dots {
    bottom: 10px;
  }
  .interview .slick-dotted.slick-slider {
    padding-bottom: 30px;
  }

  .interview .linkList:not(.slick-initialized) {
    width: 1096px;
    margin-left: auto;
    margin-right: auto;
  }
  .interview .linkList:not(.slick-initialized) .linkList-img {
    margin: 0 20px;
  }
}
.section2 {
  background-color: #eeeeee;
  text-align: center;
  padding: 60px 4%;
}
@media screen and (min-width: 768px) {
  .section2 {
    padding: 60px 0;
  }
}
.section2 .copy {
  width: 80%;
}
.section2 h2 {
  font-weight: 700;
  font-size: 2.2rem;
  line-height:1.75;
   font-weight:700;
   font-feature-settings: "palt";

}

@media screen and (min-width: 768px) {
  .section2 .copy {
    width: auto;
  }

.section2 h2 {
  font-size: 3.6rem;
}
}
.section2 .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.section2 .btn-wrap a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 0;
  border: 6px solid #fff;
  border-radius: 30px;
  width: 40%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .section2 .btn-wrap a {
    font-size: 26px;
    padding: 30px 0;
    border: 10px solid #fff;
    border-radius: 60px;
    width: 320px;
  }
}
.section2 .btn-wrap a.btn-blue {
  background-color: #41bfd6;
  color: #fff;
  margin-right: 24px;
}
.section2 .btn-wrap a.btn-yellow {
  background-color: #f6d130;
  color: #000;
}
.section2 .about-sponsor {
  display: inline-block;
  margin-top: 40px;
  color: #e4007f;
  font-size: 16px;
}

.section3 {
  padding: 30px 0 0;
  background-color: #0072CE;
}

.section3 h2 {
  font-weight: 700;
  color:#fff;
  font-size: 2.2rem;
  line-height:1.75;
  text-align: center;
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .section3 {
    padding: 30px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .section3 {
    padding: 30px 0;
  }
  .section3 h2 {
  font-size: 3.6rem;
  line-height:1.75

}
}

.section3 .inner h2 .copy {
  width: 80%;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .section3 .inner h2 .copy {
    width: auto;
  }
}
.section3 .inner .info {
  border: solid 2px #fff;
  padding: 23px;
  margin: 40px 0 0 0;
}
.section3 .inner .info p {
  text-align: left;
  color: #fff;
  font-size: 3.5vw;
}
@media screen and (min-width: 768px) {
  .section3 .inner .info p {
    font-size: 16px;
  }
}
.section3 .inner .box-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.section3 .inner .box-wrap .box {
  background-color: #fff;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section3 .inner .box-wrap .box {
    width: 480px;
    height: 141px;
    margin-top: 20px;
  }
}
.section3 .inner .box-wrap .box .img-tit {
  display: flex;
  align-items: flex-start;
}
.section3 .inner .box-wrap .box .img-tit .pic {
  width: 50%;
}
.section3 .inner .box-wrap .box .img-tit .tit {
  width: auto;
  max-height: 20vw;
  margin: 4% 4% 0;
}
@media screen and (min-width: 768px) {
  .section3 .inner .box-wrap .box .img-tit .tit {
    max-width: none;
    max-height: 100px;
    margin: 20px;
  }
}
.section3 .inner .box-wrap .box .img-tit .tit.tit1 {
  height: 12vw;
}
@media screen and (min-width: 768px) {
  .section3 .inner .box-wrap .box .img-tit .tit.tit1 {
    height: 64px;
  }
}
.section3 .inner .box-wrap .box p {
  padding: 5%;
}
.section3 .inner .number-graphic {
  text-align: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic {
    width: 920px;
    margin: 115px auto 0;
  }
}
.section3 .inner .number-graphic .number-graphic-tit {
  background-color: #fff;
  font-weight: 700;
  color: #243C4B;
  font-size: 18px;
  display: inline-block;
  padding: 10px;
  margin-bottom: 20px;
      line-height: 1;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-graphic-tit {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-box-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.section3 .inner .number-graphic .box {
  text-align: center;
  color: #fff;
  display: flex;
  align-items: flex-start;
  width: 280px;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .box {
    width: 410px;
  }
  .section3 .inner .number-graphic .box:nth-child(3),
  .section3 .inner .number-graphic .box:nth-child(4) {
    margin-top: 0;
  }
}
.section3 .inner .number-graphic .box .pic {
  width: 100px;
  text-align: right;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .box .pic {
    width: 150px;
    text-align: center;
    margin-top: 0;
  }
}
.section3 .inner .number-graphic .box .pic1 {
  width: 80%;
  margin-right: 10%;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .box .pic1 {
    width: auto;
    margin: 0;
  }
}
.section3 .inner .number-graphic .box .pic2 {
  width: 110%;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .box .pic2 {
    width: auto;
    margin: 0;
  }
}
.section3 .inner .number-graphic .box .pic3 {
  width: 110%;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .box .pic3 {
    width: auto;
    margin: 0;
  }
}
.section3 .inner .number-graphic .box .pic4 {
  width: 95%;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .box .pic4 {
    width: auto;
    margin: 0;
  }
}
.section3 .inner .number-graphic .box .stit {
  font-size: 21px;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .box .stit {
    font-size: 26px;
  }
}
.section3 .inner .number-graphic .box .txt {
  width: 70%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .box .txt {
    width: 280px;
  }
}
.section3 .inner .number-graphic .box p {
  margin-top: 20px;
}
.section3 .inner .text-covid {
  display: inline-block;
  color: #fff;
  width: 100%;
  text-align: center;
  margin: 50px auto 0;
}
@media screen and (min-width: 768px) {
  .section3 .inner .text-covid {
    margin: 70px auto 0;
  }
}
.section3 .inner .text-covid h2 {
  display: inline-block;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  font-size: 4vw;
  border: solid 2px #fff;
  padding: 20px 35px;
  max-width: 710px;
  margin: 50px auto;
}
@media screen and (min-width: 768px) {
  .section3 .inner .text-covid h2 {
    font-size: 22px;
    padding: 30px 0;
    width: 100%;
  }
}
.section3 .inner .number-graphic .number-covid {
  color: #fff;
  max-width: 980px;
  margin: 50px 10px;
  border: solid 5px #fff;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid {
    margin: 70px auto;
    border: solid 10px #fff;
  }
}
.section3 .inner .number-graphic .number-covid h2 {
  line-height: 1.6;
  font-weight: 600;
  text-align: left;
  font-size: 4vw;
  margin: 8vw;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid h2 {
    font-size: 22px;
    margin: 60px auto;
    text-align: center;
  }
}
.section3 .inner .number-graphic .number-covid h2 br {
  display: none;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid h2 br {
    display: block;
  }
}
.section3 .inner .number-graphic .number-covid .text {
  margin: 8vw;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid .text {
    margin: 0 75px;
  }
}
.section3 .inner .number-graphic .number-covid .text p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid .text p {
    font-size: 16px;
  }
}
.section3 .inner .number-graphic .number-covid .number_flex_box {
  display: flex;
  flex-wrap: wrap;
  margin: 8vw 8vw 0px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid .number_flex_box {
    margin: 75px 75px 0px;
  }
}
.section3 .inner .number-graphic .number-covid .number_flex_box .block {
  width: 70vw;
  margin-bottom: 6vw;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid .number_flex_box .block {
    width: 370px;
    margin-bottom: 65px;
  }
}
.section3 .inner .number-graphic .number-covid .number_flex_box .block h3 {
  text-align: center;
  margin-bottom: 15px;
}
.section3 .inner .number-graphic .number-covid .number_flex_box .block h3 .w1 {
  width: 60vw;
}
@media screen and (min-width: 768px) {
  .section3
    .inner
    .number-graphic
    .number-covid
    .number_flex_box
    .block
    h3
    .w1 {
    width: auto;
  }
}
.section3 .inner .number-graphic .number-covid .number_flex_box .block h3 .w2 {
  width: 52vw;
}
@media screen and (min-width: 768px) {
  .section3
    .inner
    .number-graphic
    .number-covid
    .number_flex_box
    .block
    h3
    .w2 {
    width: auto;
  }
}
.section3 .inner .number-graphic .number-covid .number_flex_box .block p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid .number_flex_box .block p {
    font-size: 16px;
  }
}
.section3 .inner .number-graphic .number-covid .number_flex_box .block p span {
  font-size: 12px;
}
.section3 .inner .number-graphic .number-covid .note {
  margin: 0 20px 15px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section3 .inner .number-graphic .number-covid .note {
    text-align: center;
  }
}
.section3 .inner .number-graphic .number-covid .note p {
  font-size: 11px;
}
.section3 .inner .number-graphic .annotation {
  font-size: 11px;
  text-align: left;
  color: #fff;
  margin-top: 40px;
}
.section3 .inner .moviewrap {
  width: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .section3 .inner .moviewrap {
    flex-direction: row;
    justify-content: space-between;
    width: 980px;
  }
}
.section3 .inner .moviewrap .movie {
  margin-top: 80px;
  color: #fff;
  width: 100%;
  height: 50vw;
}
@media screen and (min-width: 768px) {
  .section3 .inner .moviewrap .movie {
    width: 460px;
    height: 259px;
    margin-top: 40px;
  }
}
.section3 .inner .moviewrap .movie:first-child {
  margin-top: 40px;
}
.section3 .inner .moviewrap .movie iframe {
  width: 100%;
  height: 100%;
}
.section3 .inner .moviewrap .movie img {
  width: 100%;
}
.section3 .inner .moviewrap .movie p {
  margin-top: 10px;
}

.section4 {
  padding: 60px 0;
  text-align: center;
}
.section4 h2 img {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .section4 h2 img {
    width: 420px;
  }
}
@media screen and (min-width: 768px) {
  .section4 .box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 800px;
    margin: 40px auto 0;
  }
}
.section4 .box p {
  margin-top: 40px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section4 .box p {
    margin: 0 auto;
  }
}
.section4 .box small {
  margin-top: 20px;
  display: block;
  text-align: left;
}
.section4 .box img {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section4 .box img {
    margin: 0 auto;
    padding-left: 48px;
  }
}

.section5 {
  padding: 60px 0;
  background-color: #def4fa;
}
.section5 h2 {
  text-align: center;
  color: #243C4B;
  font-size: 20px;
   font-weight:700
}
@media screen and (min-width: 768px) {
  .section5 h2 {
    font-size: 24px;

  }
}
.section5 .slider {
  margin-top: 40px;
}
.section5 .voice {
  background-color: #fff;
  border-radius: 20px;
  padding: 6%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .section5 .voice {
    display: flex;
    align-items: flex-start;
    padding: 40px;
  }
}
.section5 .voice h3 {
  font-size: 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section5 .voice h3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 120px;
    font-size: 18px;
    margin-right: 30px;
  }
}
.section5 .voice h3 img {
  width: 22%;
}
@media screen and (min-width: 768px) {
  .section5 .voice h3 img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
}
.section5 .voice h3 span {
  width: 100%;
  text-align: left;
  margin-left: 4vw;
}
@media screen and (min-width: 768px) {
  .section5 .voice h3 span {
    margin-left: 0;
  }
}
.section5 .voice p {
  margin-top: 20px;
  font-size: 3.4vw;
}
@media screen and (min-width: 768px) {
  .section5 .voice p {
    margin-top: 0;
    font-size: 16px;
    width: 570px;
  }
}
.section5 .voice.woman h3 {
  color: #e4007f;
}
.section5 .voice.man h3 {
  color: #00a0e9;
}

.section6 {
  background-color: #f0f0f0;
  padding: 0 0 60px;
}
@media screen and (min-width: 768px) {
  .section6 {
    padding: 60px 0 60px;
    text-align: center;
  }
}
.section6 .stit {
  text-align: center;
  color: #fff;
  font-size: 18px;
   font-weight:bold;
}
.section6 .stit span {
  display: inline-block;
  background-color: #0072CE;
  padding: 10px;
  margin: 50px auto 0;
}
@media screen and (min-width: 768px) {
  .section6 .stit {
    font-size: 20px;
  }
  .section6 .stit span {
    margin: 0 auto;
      padding: 15px;
  }
}
.section6 .copy {
  text-align: center;
  margin: 40px 0;
  font-feature-settings: "palt";
  letter-spacing: 0.1em
}

.section6 h3.copy  {
  font-weight: 700;
  font-size: 2rem;
  line-height:1.75;
  text-align: center;
}


.section6 h3.copy span.main-copy  {
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
.section6 h3.copy  {
  font-weight: 700;
  font-size: 3rem;
  line-height:1.75;
  text-align: center;
}

.section6 h3.copy span.main-copy  {
  font-size: 3.6rem;
}
}

.modal_code_wrap h3 {
  text-align: center;
  color: #0072CE;
  font-size: 4vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .modal_code_wrap h3   {
  font-size: 3rem;
  font-weight:700;
  line-height:1.75;
}
  }
.kakko {
letter-spacing: -0.3em;
}

.section6 .copy img {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .section6 .copy img {
    width: auto;
  }
  .section6 h2.copy  {
  font-weight: 700;
  font-size: 3rem;
  line-height:1.75;
  text-align: center;
}

.section6 h2.copy span.main-copy  {
  font-size: 4rem;
}
}
.section6 .sub {
  margin-bottom: 30px;
}
.section6 .sub br {
  display: none;
}
@media screen and (min-width: 768px) {
  .section6 .sub br {
    display: block;
  }
}
.section6 .info {
  border: solid 2px #e4007f;
  padding: 23px;
  margin: 0vw 0 5vw 0;
}
@media screen and (min-width: 768px) {
  .section6 .info {
    margin: 40px 0 40px 0;
  }
}
.section6 .info p {
  text-align: left;
  color: #e4007f;
  font-size: 3.5vw;
}
@media screen and (min-width: 768px) {
  .section6 .info p {
    font-size: 14px;
  }
}
.section6 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .section6 ul {
    justify-content: center;
  }
}
.section6 ul li {
  width: 48%;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .section6 ul li {
    width: auto;
    margin-top: 5px;
    margin-right: 5px;
  }
  .section6 ul li img {
    width: 240px;
  }
}

.section7 {
  padding: 60px 0;
}

.section7 .copy img {
  width: 80%;
}

.section7  h2 {
   text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  line-height:1.75;
  color:#e4007f;
}



@media screen and (min-width: 768px) {
  .section7 .copy img {
    width: auto;
  }
    .section7 .copy {
    width: auto;
  }

.section7 h2 {
  font-size: 4rem;
  line-height:1.75

}
}
.section7 .txt {
  margin-top: 20px;
  text-align: center;
}
.section7 .boxwrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .section7 .boxwrap .box {
    width: 450px;
  }
}
.section7 .boxwrap .box img {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .section7 .boxwrap .box img {
    width: 100%;
  }
}
.section7 .boxwrap .box p {
  margin-top: 10px;
}
.section7 .boxwrap .box h3 {
  margin-top: 20px;
  font-weight: bold;
  font-size: 20px;
}
.section7 small {
  margin-top: 40px;
  display: block;
}

.section8 {
  background-color: #f0f0f0;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .section8 {
    padding: 10px 0 60px;
  }
}
.section8 h2 {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section8 h2 {
  font-size: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .section8 .boxwrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.section8 .box {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .section8 .box {
    flex-direction: column;
    width: 450px;
    margin: 60px 0 0;
  }
}
.section8 .box:last-child {
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .section8 .box:last-child {
    flex-direction: column;
  }
}
.section8 .box:last-child .txt {
  margin: 0 0 0 5%;
}
@media screen and (min-width: 768px) {
  .section8 .box:last-child .txt {
    margin: 0;
  }
}
.section8 .box .txt {
  width: 100%;
  margin: 0 5% 0 0;
}
@media screen and (min-width: 768px) {
  .section8 .box .txt {
    margin: 0;
  }
}
.section8 .box .txt h3 {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section8 .box .txt h3 {
    font-size: 24px;
    margin-top: 20px;
  }
}
.section8 .box .txt p {
  margin-top: 10px;
}
.section8 .box .txt .name {
  margin-top: 0;
  text-align: right;
}
.section8 .box img {
  width: 100%;
}
.section8 hr {
  border: none;
  border-bottom: 1px solid #e4007f;
  margin-top: 40px;
}
.section8 h2 {
  margin-top: 30px;
}
.section8 p {
  margin-top: 30px;
}
.section8 .boxwrap2 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section8 .boxwrap2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.section8 .boxwrap2 .box {
  margin: 0;
}
.section8 .boxwrap2 .box {
  display: flex;
  background-color: #ef66b2;
  margin-top: 20px;
  width: 100%;
  height: 25vw;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .section8 .boxwrap2 .box {
    width: 480px;
    height: 150px;
    margin-top: 20px;
  }
}
.section8 .boxwrap2 .box .pic {
  height: 25vw;
  width: 25vw;
}
@media screen and (min-width: 768px) {
  .section8 .boxwrap2 .box .pic {
    height: 150px;
    width: 150px;
  }
}
.section8 .boxwrap2 .box .tit {
  width: auto;
  height: 18vw;
  margin: 4vw;
}
@media screen and (min-width: 768px) {
  .section8 .boxwrap2 .box .tit {
    width: auto;
    height: 90px;
    margin: 24px;
  }
}

.section9 {
  padding: 60px 0;
}
.section9 .bordertit {
  text-align: center;
}
.section9 .bordertit span {
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border: 2px solid #000;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .section9 .bordertit span {
    font-size: 30px;
    border: 4px solid #000;
    padding: 16px 30px;
  }
}
.section9 h2 {
  margin: 40px 0;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  line-height:1.75;
  color:#243C4B;
}

.section9 h3.copy {
  margin: 40px 0;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height:1.75;
  color:#243C4B;
   font-feature-settings: "palt";
  letter-spacing: 0.1em
}


@media screen and (min-width: 768px) {
    .section9 h2 {
  font-size: 3.4rem;
  line-height:1.75
  }
      .section9 h3.copy {
  font-size: 3rem;
  line-height:1.75
  }
  
}
.section9 .box {
  background-color: #fce5f2;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section9 .box {
    padding-bottom: 40px;
  }
}
.section9 .box > .tit {
  background-color: #e4007f;
  color: #fff;
  position: relative;
  padding: 30px;
}
.section9 .box > .tit img {
  width: auto;
}
.section9 .box > .tit .logo {
   width: 80%;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .section9 .box > .tit .logo {
    width: 448px;
  }
}
.section9 .box > .tit span {
  font-size: 18px;
}
.section9 .box > .tit .icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .section9 .box > .tit .icon {
    bottom: 20px;
    right: 180px;
  }
}
.section9 .box > .stit {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section9 .box .boxinner {
    display: flex;
    padding: 60px 40px 0;
  }
}
.section9 .box .boxinner .pic {
  display: block;
}
.section9 .box .boxinnerinner {
  padding: 20px 4%;
}
.section9 .box .boxinnerinner h4 {
        font-size:min(4.8vw,18px);
        line-height:2;
        margin:0px 0 24px;
        color:#DC0080;
        font-weight:bold;
}

@media screen and (min-width: 768px) {
  .section9 .box .boxinnerinner {
    padding: 0 0 0 40px;
  }
  
.section9 .box .boxinnerinner h4 {
        font-size:24px;
        line-height:1.66;
        margin:0px 0 32px;
}
    .boxinnerinner>.txt{margin-bottom: 40px;}
    ul.notice li{ font-size: 1.2rem;}
}
}
.section9 .box .boxinnerinner > .stit {
  text-align: center;
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section9 .box .boxinnerinner > .stit {
    text-align: left;
    margin: 0 0 40px;
  }
}
.section9 .box .boxinnerinner > .stit img {
  width: 80%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .section9 .box .boxinnerinner > .stit img {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .section9 .box .boxinnerinner p {
    font-size: 18px;
  }
}
.section9 .box .boxinnerinner small {
  display: inline-block;
  margin-top: 20px;
  line-height: 1.4;
}
.section9 .box .boxinner2 {
  padding: 20px 4%;
}
@media screen and (min-width: 768px) {
  .section9 .box .boxinner2 {
    padding: 0;
  }
}
.section9 .box .borderwrap {
  padding: 5%;
  border: 2px solid #e4007f;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section9 .box .borderwrap {
    width: 750px;
    margin: 60px auto 0;
    padding: 40px;
  }
}
.section9 .box .borderwrap > .tit {
  display: flex;
  align-items: flex-start;
}
.section9 .box .borderwrap > .tit img {
  width: 40%;
  height: auto;
  margin-right: 4%;
}
@media screen and (min-width: 768px) {
  .section9 .box .borderwrap > .tit img {
    width: 160px;
    margin-right: 40px;
  }
}
.section9 .box .borderwrap > .tit h4 {
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section9 .box .borderwrap > .tit h4 {
    font-size: 24px;
  }
}
.section9 .box .borderwrap p {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section9 .box .borderwrap p {
    margin-top: -30px;
    padding-left: 200px;
  }
}
.section9 .box .borderwrap p small {
  margin-top: 5px;
  display: block;
}
@media screen and (min-width: 768px) {
  .section9 .box .borderwrap p small {
    display: inline;
  }
}
.section9 .box .note {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .section9 .box .note {
    width: 750px;
    margin: 10px auto 0;
  }
}
.section9 .box .note small {
  display: block;
  line-height: 1.6;
}
.section9 .box .amountwrap {
  margin-top: 20px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .section9 .box .amountwrap {
    width: 900px;
    margin: 40px auto 0;
  }
}
.section9 .box .amountwrap h4 {
  background-color: #e4007f;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 12px 0;
}
.section9 .box .amountwrap p {
  text-align: center;
  margin: 20px 0;
}
.section9 .box .amountwrap img {
  width: 90%;
  height: auto;
  margin: 10px 0 20px;
}
@media screen and (min-width: 768px) {
  .section9 .box .amountwrap img {
    width: auto;
  }
}
.section9 .box .btn-wrap {
  margin: 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section9 .box .btn-wrap {
    margin: 40px 0 20px;
  }
}

@media screen and (min-width: 768px){
.section9 .box .btn-wrap a {
   margin: 0 auto 30px; padding: 12px 1em; width: 450px; border-radius: 45px;
&:hover{ width: 500px;}
}
    .section9 .box .amountwrap img{
        width:590px
    }
    .section9 .box .amountwrap p{
        font-size:16px
    }
}
.section9 .box .btn-wrap{
    margin-top:min(8vw,30px);
    text-align:center
}
@media screen and (min-width: 768px){
    .section9 .box .btn-wrap{
        margin:40px 0 0
    }
}

.section10 {
  padding: 0 0 40px;
}
.section10 .inner {
  margin: 0 8%;
}
@media screen and (min-width: 768px) {
  .section10 .inner {
  width: 1040px;
        margin: 0 auto;
        padding: 0 30px;
  }
}
.section10 .copy {
  color: #0072CE;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight:700;
}
@media screen and (min-width: 768px) {
  .section10 .copy {
    font-size: 2.2rem;
  }
}
.section10 .box {
  background-color: #e5f1fa;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .section10 .box {
    padding-bottom: 20px;
  }
}
.section10 .box > .tit {
  background-color: #0072CE;
  color: #fff;
  position: relative;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .section10 .box > .tit {
    padding: 20px;
  }
}
.section10 .box > .tit img {
  width: auto;
}
.section10 .box > .tit .logo {
  width: 60%;
  height: auto;
  margin-bottom: 10px;
}
.section10 .box > .tit.pgs .logo {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .section10 .box > .tit .logo {
    /* width: 286px; */
    width: auto;
    height: 42px;
  }
}
.section10 .box > .tit span {
  font-size: 18px;
  font-weight: 700;
}
.section10 .box > .tit .icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .section10 .box > .tit .icon {
    right: 120px;
  }
  .section10 .box > .tit.pgs .icon {
    right: 40px;
  }
}
.section10 .box > .stit {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section10 .box .boxinner {
    display: flex;
    align-items: flex-start;
    padding: 50px 40px 0;
  }
  .section10 .box .boxinner > img {
        max-width: 430px;
        width: 47.2%;
  }
}
.section10 .box .boxinnerinner {
  padding: 20px 4% 0;
}
@media screen and (min-width: 768px) {
  .section10 .box .boxinnerinner {
    padding: 0 0 0 20px;
    padding:45px 45px 0
  }
  
   .section10 .box .boxinnerinner p {
        font-size: 18px;
    }
}
.section10 .box .boxinnerinner > .stit {
  text-align: center;
  margin: 10px 0 20px;
}
.box .boxinnerinner > h4.stit {
  font-size: 16px;
  line-height: 1.66;
  color: #E4007F;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .section10 .box .boxinnerinner > .stit {
    text-align: left;
    margin: 0 0 20px;
  }
  .box .boxinnerinner > h4.stit {
    font-size: 20px;
  }
}
.section10 .box .boxinnerinner > .stit img {
  width: 70%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .section10 .box .boxinnerinner > .stit img {
    width: 300px;
  }
}
.section10 .box .boxinnerinner small {
  display: inline-block;
  margin-top: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .section10 .box .boxinnerinner small {
    display:inline-block;
    margin-top:20px;
    line-height:1.4
  }
}
.section10 .box .boxinner2 {
    margin-top: min(10.6vw,40px);
    padding:0 4% min(6.9vw,26px)
}
@media screen and (min-width: 768px) {
  .section10 .box .boxinner2 {
        padding:0 40
    }
}
.section10 .box .amountwrap {
  margin-top: 0;
  background-color: #fff;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .section10 .box .amountwrap {
    margin-top: 20px;
  }
}
.section10 .box .amountwrap h4 {
  background-color: #0072CE;
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding: 10px 0;
}
.section10 .box .amountwrap p {
  text-align: center;
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .section10 .box .amountwrap p {
    margin: 20px 0 10px;
  }
}
.section10 .box .amountwrap p > img {
  width: 30%;
}
@media screen and (min-width: 768px) {
  .section10 .box .amountwrap p > img {
    width: 160px;
  }
}
.section10 .box .amountwrap > img {
  width: 70%;
  height: auto;
  margin: 10px 0 20px;
}
@media screen and (min-width: 768px) {
  .section10 .box .amountwrap > img {
    width: auto;
  }
}
.section10 .box .btn-wrap {
  margin-top:min(8vw,30px);
    text-align:center
}
@media screen and (min-width: 768px) {
  .section10 .box .btn-wrap {
    margin:40px 0 0
  }
}

@media screen and (min-width: 768px) {
  .section10 .box .btn-wrap a {
   margin: 0 auto 30px; padding: 12px 1em; width: 450px; border-radius: 45px;
&:hover{ width: 500px;}
}
  }
}
.section10 .box .btn-wrap a.btn-yellow {
  background-color: #f6d130;
  color: #000;
}
.section10 .box .btn-wrap a span {
  display: inline-block;
  font-size: 22px;
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .section10 .box .btn-wrap a span {
    font-size: 24px;
  }
}

.section11 {
  padding: 0 0 60px;
  text-align:center
}

.section11 h3 {
 font-weight: 700;
}

.section11 .box {
  background-color: #e4007f;
  border-radius: 20px;
  overflow: hidden;
}
.section11 .box .boxinner {
  padding: 20px 4%;
}
.section11 .box .boxinner > .stit {
  text-align: center;
  margin: 20px 0 40px;
  color: #fff;
  font-size: 13px;
}

  .section11 h3 {
   margin: 20px 0 20px;
  font-size: 2rem;
  line-height:1.75;
  color: #0072CE;
   font-feature-settings: "palt";
  letter-spacing: 0.1em
  }

@media screen and (min-width: 768px) {
  .section11 h3 {
   margin: 40px 0 20px;
  font-size: 3rem;
  line-height:1.75;
  color: #0072CE;
  }
}
  .section11 .box .boxinner > .stit {
    width: 440px;
    margin: 20px auto 40px;
  }
  .section11 .box .boxinner > .stit img {
    width: 100%;
  }
}
.section11 .box .boxinner > .stit span {
  display: inline-block;
  margin: 10px 0;
  font-size: 20px;
}
.section11 .pic {
    text-align:center;
    background-color: #fff;
    margin:0 auto;
    padding:20px;
    border: 1px solid #0072CE;
    border-radius: 18px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
.section11 .pic {
    text-align:center;
    background-color: #fff;
    margin:0 auto;
    padding:0px;
    border: 0px;
    border-radius: 0px;
    overflow: hidden;
}
}
.section11 .box .boxinner small {
  display: inline-block;
  margin-top: 20px;
  line-height: 1.4;
}

/* plan add 211022 */
.section11 .box .boxinner .notes {
  text-align: left;
  margin-top: 0;
  line-height: 1.4;
  font-size: 12px;
}

.section11 .box .boxinner .notes li {
  margin-top: 5px;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (min-width: 768px) {
  .section11 .box .boxinner .notes {
    font-size: 14px;
  }
}
/* end */

.section11 .box .btn-wrap {
  text-align: center;
  margin: 20px 0;
}
.section11 .box .btn-wrap .btn {
  display: inline-block;
  color: #e4007f;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  border-radius: 10px;
  position: relative;
  padding: 16px 24px;
}
.section11 .box .btn-wrap .btn::after {
  content: "";
  display: inline-block;
  background: url(../img/arrow.svg) center center no-repeat;
  background-size: cover;
  vertical-align: middle;
  width: 10px;
  height: 11px;
  margin-left: 10px;
  margin-top: -4px;
}
@media screen and (min-width: 768px) {
  .section11 .box .btn-wrap .btn::after {
    top: 50%;
    right: 10px;
  }
}

.section12 {
  padding: 60px 0;
  background-color: #def4fa;
}
.section12 h2 {
  text-align: center;
  color: #243C4B;
  font-weight: 700;
  font-size: 2.2rem;
  line-height:1.75;
   font-weight:700;
    font-feature-settings: "palt";
  letter-spacing: 0.1em
}
@media screen and (min-width: 768px) {
  .section12 h2 {
  font-size: 3.6rem;
  }
}

.section12 h2 .stit {
  display: inline-block;
  background-color: #0072CE;
  padding: 15px;
  margin: 0px auto 15px;
  font-size: 16px;
    color: #fff;
      line-height:1;
  font-feature-settings: normal;
  letter-spacing: normal
}

@media screen and (min-width: 768px) {
.section12 h2 .stit {
    font-size: 20px;
  }
}

.section12 .txt {
  margin-top: 20px;
  text-align: center;
  font-size: 1.8rem;
}

.section12 strong{
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .section12 .txt {
    font-size: 2rem;
  }
}

.section12 .slider {
  margin-top: 40px;
}
.section12 .why {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}




.section12 .why h3 {
  font-size: 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .section12 .why h3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 120px;
    font-size: 18px;
    margin-right: 30px;
  }
}
.section12 .why p {
margin-top: 0px;
font-size: 4vw;
text-align:center;
padding:1.25rem;
font-weight:700;
color: #243C4B;
}
@media screen and (min-width: 768px) {
  .section12 .why p{
    font-size:1.6rem;

  }
}


.section12 h3 {
text-align: center;
font-weight: 700;
font-size: 2.2rem;
margin-top: 1em;
line-height: 1.75;
    color: #0072CE

}

@media screen and (min-width: 768px) {
  .section12 h3 {
    width: auto;
  font-size: 3rem;
  margin-top: 1em;
}
}

.section13 {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .section13 {
    padding: 40px 0 60px;
  }
}
@media screen and (min-width: 768px) {
  .section13 .inner {
    width: 800px;
    margin: 0 auto;
    padding: 0;
  }
}
.section13 h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 2.2rem;
  line-height:1.75;
  color:#243C4B;
}

.section13 h2 span {
  letter-spacing: -0.04em;
  font-variant-east-asian: proportional-width;
  font-kerning: normal;
}

@media screen and (min-width: 768px) {
  .section13 h2 {
    margin-bottom: 50px;
  font-size: 3.6rem;
  }
}
.section13 h2 img {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .section13 h2 img {
    width: auto;
  }
}
.section13 .box {
  background-color: #f0f0f0;
}
@media screen and (min-width: 768px) {
  .section13 .box {
    display: flex;
    margin-top: 40px;
    height: 240px;
  }
}
.section13 .box .tit {
  background-color: #58CAE7;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section13 .box .tit {
    width: 240px;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    margin-top: 0;
  }
}
.section13 .box .tit h3 {
  text-align: left;
  width: 50%;
  color: #243C4B;
  padding-left: 5%;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .section13 .box .tit h3 {
    width: 100%;
    font-size: 16px;
    padding: 20px 0 0 20px;
  }
}
.section13 .box .tit h3 span {
  font-size: 18px;
  display: inline-block;
  margin-top: 5px;
  font-weight:900
}
@media screen and (min-width: 768px) {
  .section13 .box .tit h3 span {
    font-size: 24px;
  }
}
.section13 .box .tit img {
  width: 50%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .section13 .box .tit img {
    width: 240px;
    height: 151.58px;
  }
}
.section13 .box p {
  text-align: left;
  padding: 5%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .section13 .box p {
    width: 560px;
    padding: 40px;
  }
}

.section14 {
  padding: 40px 0;
  text-align: center;
  background-color: #DFF4FA;
}

.section14  h2 {
   text-align: center;
  font-weight: 900;
  font-size: 2.2rem;
  line-height:1.75;
  color:#0072CE;
}

@media screen and (min-width: 768px) {
.section14 h2 {
  font-size: 3.6rem;
}
}


.section15 {
  padding-bottom: 40px;
}
.section15 .copy {
  text-align: center;
  background-color: #e4007f;
  padding: 40px 0;
}
.section15 .copy img {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .section15 .copy img {
    width: auto;
  }
}
.section15 .innerinner {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .section15 .innerinner {
    width: 780px;
    margin: 40px auto 0;
  }
}
.section15 .innerinner .lead {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section15 .innerinner .lead {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.section15 .box {
  border-top: 2px solid #000;
  margin-top: 20px;
}
.section15 .box.last {
  border-bottom: 2px solid #000;
  padding-bottom: 20px;
}
.section15 .box h3 {
  font-size: 16px;
  vertical-align: middle;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section15 .box h3 {
    font-size: 27px;
    font-weight: bold;
  }
}
.section15 .box h3::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 3px;
  background-color: #e4007f;
}
@media screen and (min-width: 768px) {
  .section15 .box h3::before {
    width: 25px;
    height: 25px;
    margin-right: 6px;
  }
}
.section15 .box .num {
  text-align: right;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section15 .box .num {
    margin-top: 30px;
  }
}
.section15 .box .num1,
.section15 .box .num4 {
  width: auto;
  height: 13vw;
}
@media screen and (min-width: 768px) {
  .section15 .box .num1,
  .section15 .box .num4 {
    width: auto;
    height: auto;
  }
}
.section15 .box .num2,
.section15 .box .num3 {
  width: auto;
  height: 22vw;
}
@media screen and (min-width: 768px) {
  .section15 .box .num2,
  .section15 .box .num3 {
    width: auto;
    height: auto;
  }
}
.section15 .year {
  text-align: right;
  margin-top: 10px;
}
.section15 .pic {
  margin-top: 40px;
  margin-bottom: 10px;
}


.donation-tax__figure {
  margin-top: 3.4rem;
  background: #fff;
  padding: 3.5rem;
  border-radius: 20px;
}

.donation-tax__figure.figure02 {
  padding: 2rem;
  margin: 2rem auto;
}

@media  (min-width: 768px) {
.donation-tax__figure.figure02 {
  padding: 3.5rem 6rem;
  text-align: center;
  margin-top: 30px auto;
}
}
.donation-tax__figure img {
  width: 91.5%;
}


@media (min-width: 768px) {
  .donation-tax__figure {
    margin-top: 2.096rem;
    padding: 1.834rem;
    padding-bottom: 3.144rem;
  }
  .donation-tax__figure img {
    width: 100%;
  }
}


.reason__donation {
  margin: 30px auto;
  padding: 30px;
  background-color:#f2f2f1;
  border-radius: 20px;
}

.reason__donation h3{
  margin: 0px auto;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: justify;
  color: #0f75ca;
  text-align:center;
}

@media (min-width: 768px) {
.reason__donation h3{
  font-size: 2.5rem;
}
}

.reason__donation img {
  width: min(100%, 740px);
  margin: 40px auto;
}
.deduction-donations__img {
  max-width: var(--box-width);
  margin: min(5vw, 60px) auto min(11vw, 80px);
}

.section15 .box2 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section15 .box2 {
    width: 670px;
    margin: 0 auto;
  }
}
.section15 .qawrap {
  margin-top: 40px;
  border: 1px solid #0072CE;
  border-radius: 20px;
  overflow: hidden;
}


@media screen and (min-width: 768px) {
  .section15 .qawrap {
    width: 900px;
    margin: 40px auto 0;
  }
  .section15 .qawrap p {
  font-size:18px;
}
}
.section15 .qawrap .qainner {
  padding: 5%;
}
.section15 .qawrap h3 {
  text-align: center;
  color: #0072CE;
  font-size: 20px;
  padding: 20px 0 0;
  font-weight:700;
}
.section15 .qawrap hr {
  border: none;
  border-bottom:1px dotted #dfdfdf;
   margin-bottom: 2em;
}


.section15 .qainner .q,
.section15 .qainner .a {
  display: flex;
  align-items: flex-start; /* 複数行時も頭を揃える */
  gap: 0.5em;
  margin: 0 0 1em;
}

.section15 .qawrap .q {
  margin-top: 10px;
  font-weight: 700;
  color: #0072CE;
}

.section15 .qawrap .a {
  margin-top: 10px;
  margin-bottom: 20px;
}

.section15 .qawrap .a a {
  color: #007dc9;
}

.section15 .qainner .q::before,
.section15 .qainner .a::before {
  content: "";
  flex: 0 0 24px;                /* ← SVGの表示幅を固定 */
  height: 24px;
  margin-top: 0.15em;            /* テキストとの縦位置調整 */
  background-repeat: no-repeat;
  background-size: contain;
}

.section15 .qainner .q::before {
  background-image: url("../img/Q.svg");
}

.section15 .qainner .a::before {
  background-image: url("../img/A.svg");
}


.twitter-timeline {
  width: 740px !important;
}

.videowrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  background-color: transparent;
  transform: scale(1);
  transition: 0.4s ease-in-out;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .videowrap {
    height: auto;
  }
}
.videowrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}
@media screen and (max-width: 768px) {
  .videowrap video {
    width: 100%;
    position: static;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.kv-slider .slick-slide {
  margin: 0px;
  outline: none;
}
@media screen and (min-width: 768px) {
  .kv-slider .slick-slide {
    margin: 0px;
  }
}

.section5slider .slick-slide {
  margin: 0px 2vw;
  width: 82vw;
  height: 90vw;
  outline: none;
}
@media screen and (min-width: 768px) {
  .section5slider .slick-slide {
    margin: 0px 20px;
    width: 800px;
    height: 260px;
  }
}

.section12slider .slick-slide {
  margin: 0px 2vw;
  width: 82vw;
  height: auto;
  outline: none;
}
@media screen and (min-width: 768px) {
  .section12slider .slick-slide {
    margin: 0px 10px;
    width: 345px;
  }
}

.slick-slide img {
  width: 100%;
}
.section12slider .slick-slide .why {
  opacity:0.8 ;
  transform: scale(.9);
  transition: opacity .7s, transform .7s;
}

.section12slider .slick-current .why {
  opacity:1 ;
  transform: scale(1);
}



.slick-prev,
.slick-next {
  width: 20px;
  height: 20px;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.2s;
  border-top: 5px solid #243C4B;
  border-right: 5px solid #243C4B;
}
@media screen and (min-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
  }
  .slick-prev:hover,
  .slick-next:hover {
    opacity: 0.7;
  }
}



.slick-prev {
  left: 20px;
  transform: rotate(-135deg);
}
@media screen and (min-width: 768px) {
.section12slider .slick-prev,
.section12slider .slick-next {
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
}

  .slick-prev {
    left: 30px;
  }
}

.slick-next {
  right: 20px;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .slick-next {
    right: 30px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .slick-dotted.slick-slider {
    margin-bottom: 22px;
  }
}

.slick-dots {
  bottom: -10vw;
}
@media screen and (min-width: 768px) {
  .slick-dots {
    bottom: -40px;
  }
}

.slick-dots li {
  width: 4vw;
  height: 4vw;
  background-color: #fff;
  margin: 0 1vw;
  opacity: 1;
  transition: opacity 0.2s;
  border-radius: 50%;
  border: 2px solid #243C4B;
}
@media screen and (min-width: 768px) {
  .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0px 10px;
  }
}
.slick-dots li.slick-active {
  background-color: #243C4B;
}
.slick-dots li.slick-active:hover {
  opacity: 1;
}

.dot {
  margin-top: 3vw;
}
@media screen and (min-width: 768px) {
  .dot {
    margin-top: 30px;
  }
}
.dot .slick-slide {
  margin: 0px 5px;
  width: 70vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .dot .slick-slide {
    width: 424px;
    height: 664px;
  }
}
.dot .slick-dots {
  bottom: -10vw;
}
@media screen and (min-width: 768px) {
  .dot .slick-dots {
    bottom: -60px;
  }
}
.dot .slick-dots li {
  width: 3vw;
  height: 3vw;
  margin: 0 2vw;
  background-color: #ccc;
  border-radius: 1.5vw;
}
@media screen and (min-width: 768px) {
  .dot .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 5px;
  }
}
.dot .slick-dots li.slick-active {
  background-color: #000;
}

/*ラインバナー*/
.line {
  margin-top: 7vw;
  display: block;
}
@media screen and (min-width: 768px) {
  .line {
    width: 670px;
    margin: 40px auto;
  }
  .line img {
    width: 100%;
  }
}

/*FV下ACジャパンバナー*/
section.acjapan {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 2.4vw 2.1333333333vw 10vw;
}
section.acjapan .acjapan-img {
  width: 26.1333333333vw;
}
section.acjapan .acjapan-img img {
  width: 100%;
}
section.acjapan .acjapan-text {
  width: 69.6vw;
  font-size: 3.2vw;
  padding: 0 5.3333333333vw;
  line-height: 1.6;
}
section.acjapan .acjapan-text br {
  display: none;
}
@media screen and (min-width: 768px) {
  section.acjapan {
    padding: 30px 0 0;
  }
  section.acjapan .acjapan-img {
    max-width: 470px;
    width: 100%;
  }
  section.acjapan .acjapan-text {
    width: 100%;
    font-size: 1.7em;
    padding: 0 0 0 20px;
  }
  section.acjapan .acjapan-text br {
    display: block;
  }
}


.font-mincho-bold {
  font-family:
    "Noto Serif JP",
    "游明朝",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "MS P明朝",
    serif;
  font-weight: 700;
}

 .em_yellow {
    background: linear-gradient(transparent 80%, #FFD500 60%);
}