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

 style.css

 ------------------------------------

 アイコンはアイコンフォント「Font Awesome」を使用。
 https://fontawesome.com/v4.7.0/

 ブレイクポイントは以下の通り。
 ・タブレット：1023px（1024px未満をタブレットと設定）
 ・スマホ：639px（640px未満をタブレットと設定）

-- */
@import url(https://fonts.googleapis.com/css?family=Titillium+Web:700i);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Sawarabi+Gothic);
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * layout-baseSize.....基本のコンテンツサイズ
 * layout-posMiddle....天地中央配置
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * pc..............ブレイクポイント設定（パソコンのみ）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル
 * module-title........タイトル共通のスタイル


-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(0deg);
    transform: translateY(7px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(0deg);
    transform: translateY(7px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-16px) rotate(0deg);
    transform: translateY(-16px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-16px) rotate(0deg);
    transform: translateY(-16px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(17px) rotate(0deg);
    transform: translateY(17px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(17px) rotate(0deg);
    transform: translateY(17px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }
}
/*-----------------------------------

	$normalize

	http://necolas.github.io/normalize.css/
	normalize ver 4.1.1 を元に改変

-----------------------------------*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

progress {
  vertical-align: baseline;
}

template,
[hidden] {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  height: auto;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

ul, ol, dl, dt, dd, figure {
  padding: 0;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

optgroup {
  font-weight: bold;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

* {
  box-sizing: border-box;
}

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

	$base

-----------------------------------*/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  min-width: 100%;
  min-height: 100%;
}

[id=wrapper] {
  overflow: hidden;
}

body {
  color: #231815;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  min-width: 1280px;
}
@media screen and (max-width: 1023px) {
  body {
    min-width: 100%;
  }
}

a {
  color: #231815;
  text-decoration: none;
}

li {
  list-style: none;
  line-height: 1.4;
}

p {
  margin: 0;
}

table th,
table td {
  text-align: left;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/*
    clearfix
--------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 639px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 639px) {
  .sp {
    display: block;
  }
}

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

	$module

-----------------------------------*/
/* layout */
.inner {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1000px;
}
@media screen and (max-width: 1023px) {
  .inner {
    max-width: 90%;
  }
}

/* 表示・非表示 */
.only-pc {
  display: block;
}
@media screen and (max-width: 1023px) {
  .only-pc {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .only-pc {
    display: none;
  }
}
.only-sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .only-sp {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .only-sp {
    display: block;
  }
}

@media screen and (max-width: 639px) {
  .more-tb {
    display: none;
  }
}

.under-tb {
  display: none;
}
@media screen and (max-width: 1023px) {
  .under-tb {
    display: block;
  }
}

/* Heading */
/* Column */
/* image */
/* Link */
a {
  position: relative;
  color: #231815;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a img {
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a:hover {
  color: #00a5e3;
  /*img {
  	opacity: .7;
  }*/
}

/* Btn */
/* List */
/* Box */
/* table */
/* width */
.w100 {
  width: 100%;
}

/* margin */
.mb0 {
  margin-bottom: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

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

	$header

-----------------------------------*/
.header {
  background: #00a5e3;
  width: 100%;
  height: 110px;
  display: table;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  z-index: 9999;
  position: fixed;
}
.header h1 {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0 0 0 1.2%;
  width: 25%;
  line-height: 1;
}
.header h1 img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  transition: 0.3s;
}
.header h1 img:hover {
  opacity: 0.7;
}
.header__nav {
  display: table-cell;
  vertical-align: middle;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  @exntend %clearfix;
  width: 75%;
}
.header__nav-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  .header-contact-sp {
    display: none;
  }
}
.contents {
  margin-top: 11rem;
}

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

	$header - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .header {
    height: 70px;
    display: block;
  }
  .header h1 {
    display: block;
    width: auto;
    max-width: 200px;
    position: absolute;
    left: 2%;
    top: 55%;
    transform: translateY(-50%);
    padding: 0;
  }
  .header__nav {
    display: block;
    width: auto;
  }
  .header__nav-inner {
    display: block;
  }
  .header-contact-sp {
    position: absolute;
    width: 25%;
    max-width: 100px;
    top: 30%;
    right: 65px;
  }
  .header-contact-sp img {
    width: 100%;
  }
  .contents {
    margin-top: 7rem;
  }
}
/*-----------------------------------

	$nav

-----------------------------------*/
.gnav {
  font-size: 0;
  position: absolute;
  top: 50%;
  right: 170px;
  transform: translateY(-50%);
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .gnav > li:last-of-type {
    display: none;
  }
}
.gnav li {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  padding: 0 0.7em;
  position: relative;
  color: #fff;
}
.gnav li:hover a::after, .gnav li:hover span::after {
  width: 100%;
}
.gnav li ul {
  position: absolute;
  color: #fff;
  text-align: center;
  top: 3.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  padding-top: 0rem;
}
.gnav li ul li {
  white-space: nowrap;
  background-color: #333;
  display: block;
  transition: 0.3s;
  padding: 10px 3rem;
  font-size: 18px;
  font-size: 1.8rem;
}
.gnav li ul li:hover {
  background-color: #6c6c6c;
}
.gnav li ul li a::after {
  content: none;
}
.gnav a, .gnav span {
  color: #fff;
  display: inline-block;
  padding: 0.2em 0;
  position: relative;
}
.gnav a::after, .gnav span::after {
  content: "";
  height: 1px;
  width: 0;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.gnav__contact {
  position: absolute;
  top: -1em;
  right: 1%;
  width: 19%;
  max-width: 190px;
}
.gnav__contact span {
  display: none;
}
.gnav__contact img {
  width: auto;
  max-width: 100%;
  height: auto;
  position: relative;
}
.gnav__contact img:hover {
  opacity: 0.8;
}
.gnav__toggle {
  display: none;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 2%;
  margin: auto;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 9999;
}
.gnav__toggle span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #fff;
  left: 0;
  top: 50%;
  bottom: 50%;
  margin: auto;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.gnav__toggle .top {
  -webkit-animation: toggle-top 0.5s;
  animation: toggle-top 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.gnav__toggle .middle {
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
  opacity: 1;
}
.gnav__toggle .bottom {
  -webkit-animation: toggle-bottom 0.5s;
  animation: toggle-bottom 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.drawer {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.5s;
}

/*
   .open
--------------------------*/
.open {
  position: fixed;
  height: 100%;
  width: 100%;
}
.open .overlay {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.open .gnav__toggle .top {
  -webkit-animation: toggle-top-close 0.5s;
  animation: toggle-top-close 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.open .gnav__toggle .middle {
  opacity: 0;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}
.open .gnav__toggle .bottom {
  -webkit-animation: toggle-bottom-close 0.5s;
  animation: toggle-bottom-close 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

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

	$nav - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .drawer {
    position: fixed;
    top: 70px;
    right: -300px;
    width: 300px;
    max-height: calc(100% - 7rem);
    background: #333;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gnav {
    position: static;
    text-align: left;
    transform: translateY(0);
  }
  .gnav > li {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 0;
    padding: 0.7em 0.7em 0.7em 1em;
    border-bottom: 1px solid #fff;
  }
  .gnav > li::after {
    height: auto;
    width: auto;
    background: none;
    position: absolute;
    bottom: auto;
    left: auto;
    top: 2.7rem;
    right: 0.5em;
    margin: auto;
    transform: translateY(-50%);
    display: inline-block;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  .gnav > li:hover a::after, .gnav > li:hover span::after {
    width: 0%;
  }
  .gnav > li:nth-of-type(2) > ul > li::after, .gnav > li:nth-of-type(3) > ul > li::after {
    position: absolute;
    top: 2.7rem;
    right: -0.4rem;
    margin: auto;
    transform: translateY(-50%);
    display: inline-block;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  .gnav > li:nth-of-type(2)::after, .gnav > li:nth-of-type(3)::after {
    content: none;
  }
  .gnav > li > ul {
    padding-top: 1rem;
    position: relative;
    top: 0;
    display: block;
    text-align: left;
  }
  .gnav > li > ul > li {
    border: 0;
    padding: 10px 0;
  }
  .gnav a {
    display: block;
  }
  .gnav a:hover {
    background: #00a5e3;
  }
  .gnav a:hover::after {
    width: auto;
  }
  .gnav__contact {
    display: none;
  }
  .gnav__contact img {
    max-width: 160px;
    margin: auto;
  }
  .gnav__toggle {
    display: block;
  }
  /*
     .open
  --------------------------*/
  .open .drawer {
    right: 0;
  }
}
/*-----------------------------------

	$footer

-----------------------------------*/
.footer {
  background: #00a5e3;
  padding: 1.5em 0 0 0;
}
.footer h2 {
  text-align: center;
}
.footer h2 img {
  max-width: 100%;
}
.footer__contact {
  text-align: center;
}
.footer__contact img {
  width: 50%;
  max-width: 337px;
  height: auto;
}
.footer__contact img:hover {
  opacity: 0.7;
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
  padding: 1.5em 0 3em;
}
.footer .site-map {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 2em;
  row-gap: 1em;
}
.footer .site-map .__item {
  width: calc(33.3333% - 1.3333333333em);
}
@media screen and (max-width: 1023px) {
  .footer .site-map .__item {
    width: calc(50% - 2em);
  }
}
.footer .site-map .__item dt {
  font-size: 1.1em;
  font-weight: bold;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #fff;
}
.footer .site-map .__item dt span, .footer .site-map .__item dt a {
  color: #fff;
}
.footer .site-map .__item dd li {
  margin: 5px 0 0 0;
  padding: 0 0 0 1em;
  position: relative;
  font-size: 0.9em;
}
.footer .site-map .__item dd li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}
.footer .site-map .__item dd li a {
  color: #fff;
}

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

$sub-top-view
下層ページトップビュー

-----------------------------------*/
.sub-top-view {
  background-position: center;
  background-size: cover;
  height: calc(100vh - 110px);
  width: 100%;
  position: relative;
}
.sub-top-view .tool-tt {
  width: 30.5%;
  max-width: 291px;
  position: absolute;
  top: 8%;
  left: 4%;
}
.sub-top-view .tool-tt img {
  max-width: 100%;
}

@media screen and (max-width: 1023px) {
  .sub-top-view {
    height: 50vh;
  }
}
@media screen and (max-width: 639px) {
  .sub-top-view {
    height: 59.7rem;
  }
  .sub-top-view .tool-tt {
    width: 28%;
    position: absolute;
    top: calc(77% - 7rem);
    left: 23%;
    transform: translateX(-50%) translateY(-50%);
  }
  .sub-top-view .tool-tt img {
    max-width: 100%;
  }
}
.sub-lead {
  max-width: 1000px;
  margin: 0 auto;
}
.sub-lead .sub-lead__inner {
  margin-top: 130px;
  padding: 65px 4% 27px;
  border: 3px solid #00a5e3;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .sub-lead .sub-lead__inner {
    margin: 100px auto 0;
    width: 90%;
    padding-top: 20px;
  }
}
@media screen and (max-width: 639px) {
  .sub-lead .sub-lead__inner {
    margin: 0 auto;
    width: 90%;
    padding-top: 10px;
    margin-top: 30px;
  }
}
.sub-lead .sub-lead__inner h2 {
  font-size: 55px;
  font-family: a-otf-ryumin-pr6n, serif;
  position: absolute;
  top: -110px;
  left: -50px;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  .sub-lead .sub-lead__inner h2 {
    font-size: 40px;
    left: -25px;
    top: -80px;
    font-weight: bold;
  }
}
@media screen and (max-width: 639px) {
  .sub-lead .sub-lead__inner h2 {
    position: static;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
}
@media screen and (max-width: 1023px) {
  .sub-lead .sub-lead__inner > p {
    font-size: 17px;
  }
}
.sub-lead .sub-lead__inner .answer p {
  color: #00a5e3;
  font-size: 40px;
  font-family: a-otf-ryumin-pr6n, serif;
  text-align: center;
  line-height: 1.45;
}
@media screen and (max-width: 1023px) {
  .sub-lead .sub-lead__inner .answer p {
    font-size: 28px;
    padding-top: 65px;
  }
}
@media screen and (max-width: 639px) {
  .sub-lead .sub-lead__inner .answer p {
    font-size: 19px;
    padding-top: 0;
  }
}
.sub-lead .sub-lead__inner .answer img {
  position: absolute;
  max-width: 35.7%;
  width: 100%;
  z-index: -1;
  top: 43%;
  left: 50%;
  transform: translateX(-50%) translateY(-65%);
}
@media screen and (max-width: 1023px) {
  .sub-lead .sub-lead__inner .answer img {
    top: 42%;
  }
}
@media screen and (max-width: 639px) {
  .sub-lead .sub-lead__inner .answer img {
    max-width: 230px;
    width: 70%;
    top: 44%;
  }
}
.sub-lead .sub-lead__inner > p {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.025em;
  margin-top: 36px;
  font-family: "Sawarabi Gothic", sans-serif;
}
@media screen and (max-width: 639px) {
  .sub-lead .sub-lead__inner > p {
    font-size: 15px;
  }
}

.go-top {
  display: block;
  width: 5rem;
  height: 5rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
@media screen and (max-width: 639px) {
  .go-top {
    width: 4rem;
    height: 4rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }
}
.go-top::after {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077";
  color: #fff;
  font-size: 2.6rem;
}
@media screen and (max-width: 639px) {
  .go-top::after {
    font-size: 2.2rem;
  }
}
.go-top:hover {
  cursor: pointer;
  background-color: #00A5E3;
}

/*# sourceMappingURL=common.css.map */
