@charset "UTF-8";

/*
breakpoint
--------------------------------------------------
mobile：520px
tablet：521px～960px
desktop：961px～
*/

/*
variable
--------------------------------------------------
*/
/*
variable > color
--------------------------------------------------
*/
:root {
  --color-text-black: #121212;
  --color-text-white: #fff;

  --color-bg-black: #0b0b0b;
  --color-bg-black-02: #262626;
  --color-bg-red: #a21515;
  --color-bg-blue: #151862;
  --color-bg-yellow: #F0FF3E;
  --color-bg-white: #fff;
}

/*
variable > content-width
--------------------------------------------------
*/
:root {
  --width-content-1000: 1000px;
  --width-content-1200: 1200px;
}

/*
variable > font
--------------------------------------------------
*/
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 600;
  src: url("../font/NotoSansJP/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 900;
  src: url("../font/NotoSansJP/NotoSansJP-Black.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../font/Roboto/Roboto-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../font/Roboto/Roboto-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../font/Roboto/Roboto-Medium.woff2") format("woff2");
  font-display: swap;
}

:root {
  --font-family-hiragino: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-family-noto-sans: "NotoSansJP", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
}

/*
variable > font size
--------------------------------------------------
*/
:root {
  --font-size14: calc(14 / 16 * 1rem);
  --font-size16: calc(16 / 16 * 1rem);
  --font-size18: calc(18 / 16 * 1rem);
  --font-size20: calc(20 / 16 * 1rem);
}

/*
variable > z-index
--------------------------------------------------
*/
:root {
  --z-index-100: 100;
  --z-index-50: 50;
  --z-index-10: 10;
  --z-index-1: 1;
}

/*
reset
--------------------------------------------------
*/
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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
base
--------------------------------------------------
*/
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.8;
  font-size: var(--font-size14);
  color: var(--color-font-base);
  font-family: var(--font-family-noto-sans);
}
@media screen and (min-width: 961px) {
  body {
    font-size: var(--font-size16);
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}
a {
  transition: all .3s ease-in-out;
}
a:hover {
  opacity: .7;
}

/*
utility
--------------------------------------------------
*/
@media screen and (min-width: 961px) {
  .u-sp {
    display: none !important;
  }
}
.u-pc {
  display: none !important;
}
@media screen and (min-width: 961px) {
  .u-pc {
    display: block !important;
  }
}

/*
utility > text
--------------------------------------------------
*/
.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-text-right {
  text-align: right;
}
.u-text-bold {
  font-weight: 700;
} 

/*
component
--------------------------------------------------
*/
/*
component > button
--------------------------------------------------
*/
.c-button {
  max-width: 300px;
  margin: 0 auto;
}
.c-button a {
  background-color: var(--color-bg-yellow);
  color: var(--color-text-black);
  display: block;
  font-size: 18px;
  font-weight: 900;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
}
.c-button span {
  font-size: 16px;
}
@media screen and (min-width: 961px) {
  .c-button {
    max-width: 380px;
  }
  .c-button a {
    font-size: 30px;
  }
  .c-button span {
    font-size: 20px;
  }
}

/*
component > title
--------------------------------------------------
*/
.c-title-level2 {
  color: var(--color-text-white);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.c-title-level2 span {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (min-width: 961px) {
  .c-title-level2 span {
    font-size: 36px;
  }
}

/*
column
--------------------------------------------------
*/
.c-column2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.c-column2 > * {
  width: calc((100% - 20px) / 2);
}
.c-column3 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.c-column3 > * {
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 521px) {
  .c-column3 > * {
    width: calc((100% - 40px) / 3);
  }
}

/*
image-box
--------------------------------------------------
*/
.img-box {
  display: flex;
  gap: 0 20px;
}
.img-box_image {
  flex: 1;
}
.img-box_text {
  flex: 1;
}
.img-box--reverse {
  flex-direction: row-reverse;
}

/*
accordion
--------------------------------------------------
*/
.c-accordion-title {
  color: var(--color-text-white);
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 25px 0;
  position: relative;
}
.c-accordion-content {
  display: none;
  padding: 20px 20px 0;
}
.c-accordion-title::before {
  background-color: var(--color-bg-yellow) ;
  content: "";
  height: 2px;
  position: absolute;
  right: 25px;
  top: 55%;
  transform: rotate(90deg);
  transition: transform .3s ease-in-out;
  width: 30px;
}
.c-accordion-title::after {
  background-color: var(--color-bg-yellow);
  content: "";
  height: 2px;
  position: absolute;
  right: 25px;
  top: 55%;
  transition: opacity .3s ease-in-out;
  width: 30px;
}
.c-accordion-title.open::before {
  background-color: var(--color-bg-white);
  transform: rotate(180deg);
}
.c-accordion-title.open::after {
  opacity: 0;
}
@media screen and (min-width: 961px) {
  .c-accordion-title::before {
    top: 62%;
  }
  .c-accordion-title::after {
    top: 62%;
  }
}

/*
layout
--------------------------------------------------
*/
/*
layout > container
--------------------------------------------------
*/
.l-container-1200,
.l-container-1000 {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .l-container-1200,
  .l-container-1000 {
    width: 100%;
  }
}

.l-container-1000 {
  max-width: var(--width-content-1000);
}
.l-container-1200 {
  max-width: var(--width-content-1200);
}

/*
layout > header
--------------------------------------------------
*/
.header {
  background-color: var(--color-bg-red);
  padding: 20px 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__logo {
  width: 43%;
}
.header__logo-02 {
  width: 40%;
}
@media screen and (min-width: 961px) {
  .header__logo {
    width: 23.5%;
  }
  .header__logo-02 {
    width: 20.2%;
  }
}

/*
layout > main
--------------------------------------------------
*/
.top-main-visual {
  background-color: var(--color-bg-red);
}
.top-main-visual-wrap__left {
  margin: 0 5%;
}
.top-main-visual-wrap__left .c-button {
  margin-top: 30px;
}
.top-main-visual-wrap__right {
  margin-top: 40px;
}
.top-target-match {
  background-color: var(--color-bg-red);
  padding: 70px 0;
}
.top-target-match__text {
  color: var(--color-text-white);
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  text-align: center;
}
.top-target-match-wrap__inner {
  background: linear-gradient(90deg, rgb(0, 0, 0), rgb(61, 61, 61));
  color: var(--color-text-white);
  margin-top: 40px;
  padding: 20px 30px;
}
.top-target-match-wrap__year {
  font-family: var(--font-family-roboto);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.top-target-match-wrap__hour {
  font-family: var(--font-family-roboto);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.top-target-match-wrap__place {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.top-target-match-wrap__meta {
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.top-target-match-wrap-02__image {
  margin-top: 20px;
  text-align: center;
}
.top-service {
  background-color: #0b0b0b;
  padding-bottom: 40px;
}
.top-service__box {
  border: 3px solid #fff;
  margin-top: 80px;
  padding: 0 20px 20px;
}
.top-service__box h2 {
  background-color: #0b0b0b;
  margin: -80px auto 0;
  padding: 0 10px;
  width: 90%;
}
.top-service__text {
  color: var(--color-text-white);
  font-size: 20px;
  font-weight: 600;
  margin-top: 50px;
  text-align: center;
}
.top-service-wrap__inner {
  margin-top: 30px;
}
.top-service-wrap-02 {
  display: flex;
  gap: 0 10px;
  justify-content: center;
  align-items: center;
}
.top-service-wrap-02__number {
  color: var(--color-text-white);
  font-size: 40px;
  font-family: var(--font-family-roboto);
}
.top-service-wrap-02__text {
  color: var(--color-text-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.top-service-wrap__image {
  margin-top: 50px;
  text-align: center;
}
#anchor-service {
  margin-top: -68px;
  padding-top: 68px;
}
.top-benefits {
  background: #151862 url(../images/benefits-main-img.jpg) no-repeat left bottom;
  background-size: contain;
  padding: 60px 0;
}
.top-benefits-wrap__inner {
  margin-top: 50px;
}
.top-benefits-wrap__image {
  text-align: center;
}
.top-benefits-wrap-02 {
  display: flex;
  gap: 0 20px;
  align-items: center;
  margin-top: 10px;
}
.top-benefits-wrap-02__number {
  color: var(--color-text-white);
  font-size: 36px;
  font-family: var(--font-family-roboto);
}
.top-benefits-wrap-02__title {
  color: var(--color-text-white);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}
.top-benefits-wrap__text {
  color: var(--color-text-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 15px;
}
.top-benefits-wrap__text-02 {
  color: var(--color-text-white);
  margin-top: 20px;
}
.top-benefits .c-button {
  padding-top: 60px;
}
.top-question {
  background-color: var(--color-bg-red);
  padding: 70px 0;
}
.c-accordion-item {
  border: 1px solid #fff;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.accordion-title-wrap {
  display: flex;
  gap: 0 30px;
  align-items: center;
}
.accordion-title-wrap__mark {
  font-size: 30px;
  font-weight: 600;
}
.accordion-title-wrap__text {
  font-size: 20px;
  font-weight: 600;
  padding-right: 26px;
}
.accordion-content-wrap {
  border-top: 1px solid #fff;
  display: flex;
  gap: 0 30px;
  align-items: center;
  padding-top: 20px;
}
.accordion-content-wrap__mark {
  color: var(--color-bg-white);
  font-size: 30px;
  font-weight: 600;
}
.accordion-content-wrap__text {
  color: var(--color-bg-white);
  font-size: 18px;
  font-weight: 600;
}
.top-question .c-accordion {
  margin-top: 60px;
}
.top-question .c-button {
  margin-top: 70px;
}
.top-question .c-accordion-content a {
  color: var(--color-bg-yellow);
}
@media screen and (min-width: 521px) {
  .top-main-visual-wrap {
    display: flex;
    gap: 0 50px;
  }
  .top-main-visual-wrap__left {
    display: flex;
    flex-direction: column;
    margin: 0;
    position: relative;
    width: 50%;
  }
  .top-main-visual-wrap__left .c-button {
    margin-top: auto;
    width: 380px;
  }
  .top-main-visual-wrap__image img {
    display: block;
    /* margin: 60px auto 0; */
    position: absolute;
    top: 0;
    bottom: 70px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
  }
  .top-main-visual-wrap__right {
    margin-top: 0;
    width: 50%;
  }
  .top-target-match {
    padding: 140px 0;
  }
  .top-target-match-wrap {
    display: flex;
    gap: 0 40px;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .top-target-match-wrap__inner {
    width: 36.6%;
  }
  .top-service-wrap {
    display: flex;
    gap: 0 70px;
    flex-wrap: wrap;
  }
  .top-service__box {
    padding: 0 70px 70px;
  }
  .top-service-wrap__inner {
    margin-top: 60px;
    width: 42.3%;
  }
  .top-benefits-wrap {
    display: flex;
    gap: 0 60px;
    flex-wrap: wrap;
  }
  .top-benefits-wrap__inner {
    width: 45%;
  }
  .top-benefits-wrap-02__title {
    font-size: 24px;
  }
  .accordion-title-wrap__text {
    padding-right: 46px;
  }
}
@media screen and (min-width: 961px) {
  /* .top-main-visual-wrap__image {
    width: 95%;
  } */
  /* .top-main-visual-wrap__image img {
    width: 100%;
  } */
  .top-target-match-wrap__inner {
    width: 17.5%;
  }
  .top-service {
    padding-bottom: 75px;
  }
  .top-service__box h2 {
    margin: -68px auto 0;
    padding: 0;
    width: 80%;
  }
  .top-service-wrap {
    margin-top: 60px;
  }
  .top-service-wrap__inner {
    margin-top: 0;
    width: 28.9%;
  }
  .top-benefits {
    padding-top: 115px;
  }
  .top-benefits-wrap {
    margin-top: 50px;
  }
  .top-benefits-wrap__inner {
    margin: 0 0 50px 0;
    width: 30%;
  }
  .top-benefits-wrap__image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top-benefits-wrap__inner:nth-of-type(2) .top-benefits-wrap__image img {
    width: 80%;
  }
  .top-benefits-wrap__inner:nth-of-type(4) .top-benefits-wrap__image img {
    width: 75%;
  }
  .top-benefits-wrap-02__title {
    font-size: 26px;
  }
  .top-question {
    padding: 100px 0 145px;
  }
  .top-question .c-button {
    margin-top: 100px;
  }
}

/*
layout > footer
--------------------------------------------------
*/
.footer {
 background-color: #262626;
 padding: 60px 5%;
}
.footer__image {
  text-align: center;
}
.footer .c-button {
  margin-top: 65px;
}
.footer .c-button a::before {
  content: '';
  display: inline-block;
  width: 38px;
  height: 26px;
  background: url(../images/mail-icon.svg) no-repeat left center;
  background-size: contain;
  position: relative;
  top: 4px;
  right: 5px;
}
.footer__text {
  color: var(--color-text-white);
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
}
.footer-navi {
  display: flex;
  gap: 0 10px;
  justify-content: center;
  margin-top: 65px;
}
.footer-navi a {
  color: var(--color-text-white);
  text-decoration: none;
}
.footer-navi__item {
  border-right: 1px solid #fff;
  font-weight: 700;
  line-height: 1;
  padding-right: 12px;
}
.footer-navi__item:last-child {
  border-right: none;
  padding-right: 0;
}
@media screen and (min-width: 521px) {
  .footer-navi__item {
    font-size: 20px;
  }
}
@media screen and (min-width: 961px) {
  .footer-navi {
    gap: 0 18px;
  }
  .footer-navi__item {
    padding-right: 20px;
  }
}

/*
layout > footer > footer-nav
--------------------------------------------------
*/

/*
page > top > common
--------------------------------------------------
*/


/*
page > top > top-mv
--------------------------------------------------
*/

/*
page > layer > common
--------------------------------------------------
*/

/*
page > about
--------------------------------------------------
*/





