@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
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-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 16px;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
  word-break: break-all;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 30px;
  -webkit-text-size-adjust: none;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #36C;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

/* ヘッダー
-----------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #333;
  position: absolute;
}

.menu-btn span:before {
  bottom: 12px;
}

.menu-btn span:after {
  top: 12px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn {
  right: 10px;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fff;
}

.menu-content ul {
  padding: 70px 10px 0;
  width: 35%;
  margin-left: 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #333;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #333;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #fff;
  transition: all 0.5s; /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

header .header__inner {
  width: auto;
  padding: 0 15px;
  position: relative;
}
header .header__inner .header_logo {
  width: 100px;
}

.hamburger-menu .sns__nav {
  width: 200px;
}
.hamburger-menu .sns__nav ul {
  margin-top: 15px;
  padding-top: 0;
}
.hamburger-menu .sns__nav ul li {
  border: none;
}
.hamburger-menu .sns__nav ul li a::before {
  display: none;
}
.hamburger-menu .sns__nav ul li a img {
  width: 100%;
  height: auto;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
}

.scroll__top {
  display: block; /* デフォルトでblockだが、後で非表示にするため */
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション設定 */
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4);
}
.scroll__top a {
  text-decoration: none;
}
.scroll__top a .scroll__top--img {
  width: 40px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 1em;
  color: #333;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* --------------------------------------------------------------

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

/* --------------------------------------------------------------

                        モーダル

----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fff;
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content .modal-content__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-content .modal-content__wrap .modal__cast--img {
  width: 40%;
}
.modal .modal-content .modal-content__wrap .modal__cast--img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.modal .modal-content .modal-content__wrap .modal__cast--text {
  width: 55%;
}
.modal .modal-content .modal-content__wrap .modal__cast--text p {
  font-size: 24px;
  line-height: 30px;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.modal .close {
  margin-top: 30px;
}
.modal .close p {
  background-color: #fff;
  color: #333;
  font-size: 1em;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  border: 1px solid #333;
}
.modal .close p:hover {
  color: #fff;
  background-color: #333;
  cursor: pointer;
  border: 1px solid #333;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
}
header .header__inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
header .header__inner .header_logo {
  width: 110px;
  height: auto;
  z-index: 90;
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: 800px;
  margin-left: 100px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_nav ul li a {
  color: #333;
  font-size: 1.5em;
  text-decoration: none;
  line-height: 59px;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
}
header .header__inner .header_nav ul li a:hover {
  color: #d9db3a;
}
header .header__inner .sns__nav {
  width: auto;
  margin-left: 100px;
}
header .header__inner .sns__nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .sns__nav ul li {
  width: 45px;
  background-color: #fff;
  border-radius: 100%;
  padding: 5px;
}
header .header__inner .sns__nav ul li:hover {
  background-color: #d9db3a;
}
header .header__inner .sns__nav ul li a img {
  width: 100%;
  height: auto;
}

.show .header__inner .header_logo {
  display: none;
}
.show .header__inner .pc {
  display: none;
}
.show .sp {
  display: block;
}
.show .sp .header_logo__wrap {
  width: 125px;
  margin-left: 20px;
}
.show .sp .header_logo__wrap .header_logo {
  display: block;
  margin-top: 25px;
}
.show .sp .header_logo__wrap .header_logo img {
  width: 100%;
  height: auto;
}

.back__01 {
  background-image: url("../img/main_bg.jpg");
  background-size: cover;
  background-position: center;
}

.back__02 {
  background-color: #d9db3a;
}

.back__03 {
  background-image: url("../img/top__bg.png"), url("../img/bottom__bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top, bottom;
  background-size: cover, cover;
  background-color: #fff;
}

.back__04 {
  background-color: #4856dd;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__inner {
  width: 80%;
  max-width: 1800px;
  height: auto;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 60px;
}
.mainvisual .mainvisual__inner .mainvisual__title {
  width: auto;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
}
.mainvisual .mainvisual__inner .mainvisual__title img {
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.mainvisual__text--wrap {
  background-color: #000;
  width: 100VW;
  padding-top: 60px;
  padding-bottom: 60px;
}
.mainvisual__text--wrap .mainvisual__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
}
.mainvisual__text--wrap .mainvisual__text p {
  letter-spacing: 5px;
  font-weight: 900;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-size: 100px;
  line-height: 110px;
}
.mainvisual__text--wrap .mainvisual__text p:nth-child(1), .mainvisual__text--wrap .mainvisual__text p:nth-child(6), .mainvisual__text--wrap .mainvisual__text p:nth-child(11), .mainvisual__text--wrap .mainvisual__text p:nth-child(16), .mainvisual__text--wrap .mainvisual__text p:nth-child(21), .mainvisual__text--wrap .mainvisual__text p:nth-child(26) {
  background: repeating-linear-gradient(to right, #8de9ff 0 10%, transparent 0 20%), repeating-linear-gradient(#9181ff 0 7%, #85ffa9 0 10%);
  background-size: 150px;
  color: transparent;
  -webkit-background-clip: text;
}
.mainvisual__text--wrap .mainvisual__text p:nth-child(2), .mainvisual__text--wrap .mainvisual__text p:nth-child(7), .mainvisual__text--wrap .mainvisual__text p:nth-child(12), .mainvisual__text--wrap .mainvisual__text p:nth-child(17), .mainvisual__text--wrap .mainvisual__text p:nth-child(22), .mainvisual__text--wrap .mainvisual__text p:nth-child(27) {
  background-image: linear-gradient(110deg, #ff686c 25%, transparent 25%), linear-gradient(135deg, #9181ff 55%, #fffa91 25%), linear-gradient(45deg, transparent 75%, #9181ff 75%), linear-gradient(135deg, transparent 75%, #333 75%);
  background-size: 40px 70px;
  background-position: 0 0, 40px 0, 40px -40px, 0px 40px;
  color: transparent;
  -webkit-background-clip: text;
}
.mainvisual__text--wrap .mainvisual__text p:nth-child(3), .mainvisual__text--wrap .mainvisual__text p:nth-child(8), .mainvisual__text--wrap .mainvisual__text p:nth-child(13), .mainvisual__text--wrap .mainvisual__text p:nth-child(18), .mainvisual__text--wrap .mainvisual__text p:nth-child(23) {
  background-image: linear-gradient(45deg, #ff76c3 25%, transparent 25%), linear-gradient(135deg, #85ffa9 25%, transparent 25%), linear-gradient(45deg, #85ffa9 75%, #3850eb 75%), linear-gradient(135deg, transparent 75%, #3850eb 75%);
  background-size: 40px 40px;
  background-position: 0 0, 30px 0, 30px -30px, 0px 30px;
  color: transparent;
  -webkit-background-clip: text;
}
.mainvisual__text--wrap .mainvisual__text p:nth-child(4), .mainvisual__text--wrap .mainvisual__text p:nth-child(9), .mainvisual__text--wrap .mainvisual__text p:nth-child(14), .mainvisual__text--wrap .mainvisual__text p:nth-child(19), .mainvisual__text--wrap .mainvisual__text p:nth-child(24) {
  background-color: #9181ff;
  background-image: linear-gradient(45deg, #8de9ff 25%, transparent 25%), linear-gradient(135deg, #ff76c3 25%, #3850eb 25%), linear-gradient(45deg, transparent 75%, #fffa91 75%), linear-gradient(135deg, transparent 75%, #333 75%);
  background-size: 40px 70px;
  background-position: 0 0, 40px 0, 40px -40px, 0px 40px;
  color: transparent;
  -webkit-background-clip: text;
}
.mainvisual__text--wrap .mainvisual__text p:nth-child(5), .mainvisual__text--wrap .mainvisual__text p:nth-child(10), .mainvisual__text--wrap .mainvisual__text p:nth-child(15), .mainvisual__text--wrap .mainvisual__text p:nth-child(20), .mainvisual__text--wrap .mainvisual__text p:nth-child(25) {
  background-image: linear-gradient(10deg, #3850eb 25%, transparent 25%), linear-gradient(100deg, #3850eb 25%, #85ffa9 0 100%), linear-gradient(100deg, transparent 75%, #333 75%);
  background-size: 40px 70px;
  background-position: 0 0, 40px 0, 40px -40px, 0px 40px;
  color: transparent;
  -webkit-background-clip: text;
}
.mainvisual__text--wrap .mainvisual__text--sub {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.mainvisual__text--wrap .mainvisual__text--sub p {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
}

.section__title {
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  width: auto;
  margin: 0 auto;
}
.section__title h2 {
  font-size: 3em;
  line-height: 1.2em;
  color: #333;
  text-align: center;
  display: block;
  width: auto;
  margin: 0 auto;
  font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
}
.section__title p {
  font-size: 1.2em;
  line-height: 20px;
  padding-bottom: 18px;
  color: #333;
  text-align: center;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        概要
----------------------------------------------------------------*
----------------------------------------------------------------*/
.overview {
  padding-top: 60px;
  padding-bottom: 60px;
}
.overview .overview__text {
  border-top: #333 1px dotted;
  border-bottom: #333 1px dotted;
}
.overview .overview__text p {
  padding: 15px 0;
  font-size: 1.2em;
  line-height: 30px;
  color: #333;
  text-align: center;
}
.overview .overview__text p span {
  background: linear-gradient(transparent 60%, #6cf 60%);
  font-weight: bold;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        詳細
----------------------------------------------------------------*
----------------------------------------------------------------*/
.detail .detail__text {
  padding-top: 60px;
  padding-bottom: 60px;
}
.detail .detail__text h3 {
  position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  background: #d9db3a;
  font-size: 2em;
  font-weight: bold;
  width: 300px;
  text-align: center;
}
.detail .detail__text h3::before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: "";
  border: 4px solid #000;
}
.detail .detail__text table {
  margin-top: 30px;
  background-color: #fff;
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.detail .detail__text table::before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: "";
  border: 4px solid #000;
}
.detail .detail__text table tr {
  padding: 15px;
  border-bottom: 1px solid #333;
}
.detail .detail__text table tr th {
  width: 30%;
  padding: 15px;
  background-color: #d9db3a;
  color: #333;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
}
.detail .detail__text table tr td {
  padding: 15px;
  background-color: #fff;
  color: #333;
  font-weight: normal;
  text-align: left;
  font-size: 1.2em;
  line-height: 30px;
}
.detail .detail__text table tr td span {
  font-size: 0.8em;
  line-height: 24px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コメント
----------------------------------------------------------------*
----------------------------------------------------------------*/
.comment {
  padding-top: 60px;
}
.comment .section__wrap .section__title {
  border-top: 1px #fff solid;
  border-bottom: 1px #fff solid;
}
.comment .section__wrap .section__title h2 {
  color: #fff;
  padding: 30px 0;
}
.comment .comment__text {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment .comment__text p {
  width: 60%;
  margin-top: 30px;
  font-size: 1.2em;
  line-height: 30px;
  color: #fff;
  text-align: left;
}
.comment .comment__text .comment__img {
  width: 35%;
}
.comment .comment__text .comment__img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フローチャート
----------------------------------------------------------------*
----------------------------------------------------------------*/
.flowchart {
  padding-bottom: 60px;
}
.flowchart .section__wrap {
  position: relative;
  padding-top: 80px;
}
.flowchart .section__wrap h3 {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 3px solid #333;
  color: #333;
  padding: 15px;
  border-radius: 45px;
  width: 300px;
  margin: 0 auto;
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
}
.flowchart .section__wrap dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  overflow: hidden;
  border: 3px solid #333;
}
.flowchart .section__wrap dl dt {
  width: 30%;
  text-align: center;
  font-size: 1.2em;
  line-height: 30px;
  color: #fff;
  font-weight: bold;
  background-color: #4856dd;
  padding: 35px;
}
.flowchart .section__wrap dl dd {
  width: 65%;
  font-size: 1.2em;
  line-height: 30px;
  color: #333;
  padding: 15px;
}
.flowchart .section__wrap .arrow {
  position: relative;
  display: block;
  width: 78.8px;
  height: 34.1px;
  margin: 30px auto;
}
.flowchart .section__wrap .arrow::before,
.flowchart .section__wrap .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 5px);
  width: 10px;
  height: 52px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 50% calc(100% - 5px);
}
.flowchart .section__wrap .arrow::before {
  transform: rotate(55deg);
}
.flowchart .section__wrap .arrow::after {
  transform: rotate(-55deg);
}

.form {
  padding-top: 60px;
  padding-bottom: 60px;
}
.form .section__title {
  margin-bottom: 30px;
}
.form .section__title h2 {
  color: #333;
  padding: 30px 0;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer .ponsorship__wrap {
  padding: 30px;
}
.footer .ponsorship__wrap .section__wrap {
  width: 1200px;
  background-color: #fff;
  margin: 0 auto;
  padding: 15px;
}
.footer .ponsorship__wrap .section__wrap h6 {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  line-height: 40px;
}
.footer .ponsorship__wrap .section__wrap p {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 15px;
  line-height: 30px;
}/*# sourceMappingURL=common.css.map */