@charset "utf-8";
/*
Theme Name: grits THEME
Author: grits
Version: 1.0.0
*/
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/******************************************************
基本設定
******************************************************/
:root {
  --main-color: #03205a; /* メインカラー */
  --sub-color: #f3ca3e; /* サブカラー */
  --bg-color: #03205a; /* 背景色1（基本的にメインカラーと同じ） */
  --bg-high-color: #f2f2f2; /* 背景色2 */
  --inner-size: 1300px; /* インナー */
  --text-size-pc: 18px; /* フォントサイズ */
  --text-size-sp: 14px; /* フォントサイズ */
  --text-color: #000; /* テキストカラー（通常） */
  --text-high-color: #fff; /* テキストカラー（背景あり） */
  --text-space: 0; /* フォントの間隔 */
  --text-weight: 500; /* フォントの太さ */
  --text-weight-bold: 600; /* フォント（太字）の太さ */
  --text-weight-black: 900; /* フォント（超太字）の太さ */
  --border-color: #ccc; /* 線の色 */
  --sans: "游ゴシック", "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "メイリオ", Meiryo, sans-serif; /* ゴシック体 */
  --serif: "游明朝体","Noto Serif JP", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Hiragino Mincho ProN", "MS PMincho", "Times New Roman", serif; /* 明朝体 */
  --alphabet: "Funnel Sans", sans-serif; /* 英語フォント */
}
/******************************************************
リセット
******************************************************/
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-weight: var(--text-weight);
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
  margin: 0;
	padding: 0;
	border: 0;
  color: var(--text-color);
	font-size: 100%;
  font-weight: var(--text-weight);
	font: inherit;
	vertical-align: middle;
  word-break: break-all;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: var(--text-size-pc);
  line-height: 2;
  font-weight: var(--text-weight);
  letter-spacing: var(--text-space);
  font-family: var(--sans);
}
@media screen and (max-width:767px) {
  body {
    font-size: var(--text-size-sp);
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: var(--text-weight);
  line-height: 1.5;
}
table, th, td {
  border-collapse: collapse;
  font-weight: var(--text-weight);
}
dl, dt, dd {
  margin: 0;
  padding: 0;
}
p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul, ol {
  text-align: left;
}
img {
  max-width: 100%;
	height: auto;
  vertical-align: middle;
}
a {
  color: var(--text-color);
  text-decoration: none;
  vertical-align: baseline;
  border:　none;
  outline:　none;
}
span {
  vertical-align: baseline;
}
*:focus {
  outline: none;
}
/******************************************************
iPhoneリセット
******************************************************/
input,textarea,select {
  font-family: var(--sans);
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-size: 1.6rem;
  font-family: var(--sans);
  outline: none;
  -webkit-appearance:none;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}
/******************************************************
animate.css カスタマイズ
******************************************************/
@keyframes fadeInUp30 {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp30 {
  animation-name: fadeInUp30;
  animation-duration: 1s;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/******************************************************
iPhoneリセット
******************************************************/
.clearfix:after,
.inner:after,
.box:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}
/******************************************************
レスポンシブ
******************************************************/
.pc, .tab, .sp {display: none;}
.inner {position: relative;}
@media screen and (max-width: 767px){
  .inner {
    margin: 0 1.5rem;
  }
  .sp {display: block;}
  .sp-left {text-align:left!important;}
  .sp-right {text-align:right!important;}
  .sp-center {text-align:center!important;}
}
@media screen and (min-width: 768px) {
  .inner {
    width: var(--inner-size);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
  }
  .pc {display: block;}
  .pc-left {text-align:left!important;}
  .pc-right {text-align:right!important;}
  .pc-center {text-align:center!important;}
}
/******************************************************
基本フォント
******************************************************/
.sans {
  font-family: var(--sans);
}
.serif {
  font-family: var(--serif);
}
.bold {
  font-weight: var(--text-weight-bold);
}
/******************************************************
ヘッダー
******************************************************/
@media screen and (min-width:1025px) {
  #h_logo {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-right: 10rem;
    text-align: center;
    z-index: 100;
    background: #fff;
    box-sizing: border-box;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  }
  #h_logo .logo img {
    width: auto;
    height: 5rem;
  }
  #h_logo .text {
    display: flex;
    flex-direction: column;
    font-family: var(--serif);
    line-height: 1.5;
  }
  #h_logo .text .large {
    font-size: 2rem;
  }
  #h_logo .text .small {
    font-size: 1.4rem;
  }
  
  #fix_shop_list {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 99;
  }
  #fix_shop_list .list a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 60px;
    padding: 0 2em;
    color: var(--text-high-color);
    font-size: 1.4rem;
    line-height: 1.35;
    text-align: center;
    font-family: var(--serif);
    background: var(--main-color);
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #fix_shop_list .list a:after {
    position: absolute;
    right: 1em;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    content: "\f105";
    font-family: 'FontAwesome';   
  }
  #fix_shop_list .list a:hover {
    opacity: .7;
  }
  #fix_shop_list .list:nth-child(n+2) {
    border-top: 1px solid #315cb1;
  }
  
  #h_btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;    
    z-index: 100;
    background: #fff;
  }
  #h_btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 100px;    
    color: var(--main-color);
    font-family: var(--serif);
    background: var(--sub-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #h_btn a:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    background: var(--main-color);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  #h_btn a:hover {
    opacity: .7;
  }
  
  
  #h_toggle_btn {
    position: fixed;
    /*display: block;*/
    display: none;
    width: 100px;
    height: 100px;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 101;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_toggle_btn span {
    display: block;
    width: 40px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 30px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;	
  }
  #h_toggle_btn span:nth-child(1){
    top: 24px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 36px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 48px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span {
    color: #fff;
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 36px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 36px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  }  
  #h_toggle_btn div {
    position: absolute;
    width: 100%;
    bottom: 10px;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", "Hiragino Mincho Pro", "Hiragino Mincho ProN", YuMincho, "MS PMincho", "Times New Roman", serif;
  }  
  
  
  #h_nav {
    background: rgba(255,255,255,.95);
    display: block;
    width: 480px;
    max-width: calc(100% - 60px);
    height: 100%;
    padding: 12rem 6rem 6rem;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #h_nav.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  #h_nav li a {
    position: relative;
    display: block;
    padding: 1em;
    padding-left: 1.5em;
    border-bottom: 1px solid var(--border-color);
  }
  #h_nav li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
    margin-top: -.5rem;
    line-height: 1;
    background: var(--main-color);
  }
  
  #page_top {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 5rem;
    height: 5rem;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 50%;
    background: var(--sub-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;   
  }  
  #page_top a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 1rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--main-color);
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 1rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--main-color);
  }     
  #page_top a:hover {
    opacity: .7;
  }
  
}
@media screen and (max-width:1024px) {
  #fix_shop_list {
    display: none!important;
  }
  #header {
    height: 6rem;
  }
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
  }
  
  #h_logo {
    display: flex;
    align-items: center;
    height: 6rem;
    padding: 1.5rem;
    text-align: center;
    box-sizing: border-box;
  }
  #h_logo .logo img {
    width: auto;
    height: 3rem;
  }
  #h_logo .text {
    display: flex;
    flex-direction: column;
    font-family: var(--serif);
    line-height: 1.3;
    margin-left: 1em;
  }
  #h_logo .text .large {
    font-size: 1.2rem;
  }
  #h_logo .text .small {
    font-size: 1rem;
  }
  
  #fix_shop_list {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 99;
  }
  #fix_shop_list .list a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    height: 60px;
    padding: 0 2em;
    color: var(--text-high-color);
    font-size: 1.6rem;
    line-height: 1.35;
    text-align: center;
    font-family: var(--serif);
    background: var(--main-color);
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #fix_shop_list .list a:after {
    position: absolute;
    right: 1em;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    content: "\f105";
    font-family: 'FontAwesome';   
  }
  #fix_shop_list .list a:hover {
    opacity: .7;
  }
  #fix_shop_list .list:nth-child(n+2) {
    border-top: 1px solid #315cb1;
  }
  
  #h_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
  }
  #h_btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 6rem;    
    color: var(--main-color);
    font-family: var(--serif);
    background: var(--sub-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #h_btn a:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: var(--main-color);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  #h_btn a:hover {
    opacity: .7;
  }
  
  
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 101;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_toggle_btn span {
    display: block;
    width: 30px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 15px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;	
  }
  #h_toggle_btn span:nth-child(1){
    top: 18px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 24px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 30px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span {
    color: #fff;
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 24px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  }  
  #h_toggle_btn div {
    position: absolute;
    width: 100%;
    bottom: 5px;
    font-size: 1rem;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", "Hiragino Mincho Pro", "Hiragino Mincho ProN", YuMincho, "MS PMincho", "Times New Roman", serif;
  }  
  
  
  #h_nav {
    background: rgba(255,255,255,.95);
    display: block;
    width: 480px;
    max-width: calc(100% - 60px);
    height: 100%;
    padding: 6rem 1.5rem 3rem;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #h_nav.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  #h_nav li a {
    position: relative;
    display: block;
    padding: 1em;
    padding-left: 1.5em;
    border-bottom: 1px solid var(--border-color);
  }
  #h_nav li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
    margin-top: -.5rem;
    line-height: 1;
    background: var(--main-color);
  }
  
  #page_top {
    display: none;
    position: fixed;
    bottom: 7rem;
    right: 1rem;
    z-index: 99;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 4rem;
    height: 4rem;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 50%;
    background: var(--sub-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;   
  }  
  #page_top a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: .8rem;
    height: 1px;
    margin-top: -.4rem;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--main-color);
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: .8rem;
    height: 1px;
    margin-top: -.4rem;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--main-color);
  }     
  #page_top a:hover {
    opacity: .7;
  }  
  
}
/******************************************************
フッター
******************************************************/
@media screen and (min-width:1025px) {
  #footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 8rem;
    color: var(--text-high-color);
    font-size: 1.2rem;
    text-align: center;
    background: var(--main-color);
  }  
}
@media screen and (max-width:1024px) {
  #footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 6rem;
    padding-bottom: 6rem;
    color: var(--text-high-color);
    font-size: 1.2rem;
    text-align: center;
    background: var(--main-color);
  }  
}
/******************************************************
タイトル
******************************************************/
@media screen and (min-width:1025px) {
  .main_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6rem;
    text-align: center;
  }
  .main_title .eng {
    color: var(--main-color);
    font-size: 6rem;
    font-weight: 700;
    font-family: var(--alphabet);
  }
  .main_title .jap {
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--sans);
  }
  .jap_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
    text-align: center;
    line-height: 1.5;
  }
  .jap_title span {
    font-size: 4rem;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
}
@media screen and (max-width:1024px) {
  .main_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
  }
  .main_title .eng {
    color: var(--main-color);
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--alphabet);
  }
  .main_title .jap {
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--sans);
  }
  .jap_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1;
  }
  .jap_title span {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
  .jap_title span:nth-child(n+2) {
    margin-top: .5em;
  }
}
/******************************************************
メインビジュアル
******************************************************/
/* アニメーション（文字） */
@keyframes catch_copy {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#top_main .add-animation .catch_copy span:nth-child(1) {
  opacity: 0;
  animation-name: catch_copy;
  animation-duration: 1s; 
  animation-delay: .6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
#top_main .add-animation .catch_copy span:nth-child(2) {
  opacity: 0;
  animation-name: catch_copy;
  animation-duration: 1s; 
  animation-delay: 1.2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
/* アニメーション（人物） */
@keyframes photo {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#top_main .add-animation .photo {
  animation-name: photo;
  animation-duration: 1s; 
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media screen and (min-width:1025px) {
  #top_main {
    position: relative;
    width: 100%;
    color: #fff;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    object-fit: cover;
  }
  #top_main .main_slider {}
  #top_main .main_slider .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
  }
  #top_main .main_slider .image_a {
    background: url(/wp-content/uploads/images/bg_main_blue.webp) center center no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .image_b {
    background: url(/wp-content/uploads/images/bg_main_blue.webp) center center no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .image_c {
    background: url(/wp-content/uploads/images/bg_message.webp) center center no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .photo {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
  }
  #top_main .main_slider .image_a .photo {
    background: url(/wp-content/uploads/images/main_img001.webp) top right no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .image_b .photo {
    background: url(/wp-content/uploads/images/main_img002.webp) top right no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .image_c .photo {
    background: url(/wp-content/uploads/images/main_img003.webp) top right no-repeat;
    background-size: cover;
  }  
  #top_main .main_slider .catch_copy {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 1em;
    font-size: 2.4vw;
    font-family: var(--serif);
    line-height: 1.6;
    box-sizing: border-ox;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    z-index: 2;
    text-shadow: .1em .1em .15em rgba(0, 0, 0, 0.5);
  }    
  #top_main .main_slider .image_c .catch_copy {
    color: var(--text-color);
    text-shadow: .1em .1em .15em rgba(255, 255, 255, 0.5);
  } 
}
@media screen and (max-width:1024px) {
  #top_main {
    position: relative;
    width: 100%;
    color: #fff;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }
  #top_main .main_slider {}
  #top_main .main_slider .image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }
  #top_main .main_slider .image_a {
    background: url(/wp-content/uploads/images/bg_main_blue.webp) center center no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .image_b {
    background: url(/wp-content/uploads/images/bg_main_blue.webp) center center no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .image_c {
    background: url(/wp-content/uploads/images/bg_message.webp) center center no-repeat;
    background-size: cover;
  }
  
  #top_main .main_slider .photo {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
  }
  #top_main .main_slider .image_a .photo {
    background: url(/wp-content/uploads/images/main_img001sp.webp) top right no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .image_b .photo {
    background: url(/wp-content/uploads/images/main_img002sp.webp) top right no-repeat;
    background-size: cover;
  }
  #top_main .main_slider .image_c .photo {
    background: url(/wp-content/uploads/images/main_img003sp.webp) top right no-repeat;
    background-size: cover;
  }    
  
  #top_main .main_slider .catch_copy {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    font-size: 4.6vw;
    font-family: var(--serif);
    text-align: center;
    line-height: 1.6;
    box-sizing: border-box;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    z-index: 2;
    text-shadow: .1em .1em .15em rgba(0, 0, 0, 0.5);
  } 
  #top_main .main_slider .image_c .catch_copy {
    color: var(--text-color);
    text-shadow: .1em .1em .15em rgba(255, 255, 255, 0.5);
  }  
}
/******************************************************
こんなお悩みはありませんか？
******************************************************/
@media screen and (min-width:1025px) {
  #top_worry {
    position: relative;
    padding: 12rem 10%;
  }
  #top_worry .worry_title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
  }
  #top_worry .worry_title img {
    width: 40vw;
  }
  #top_worry .worry_list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_worry .worry_list:nth-child(n+2) {
    margin-top: 30px;
  }
  #top_worry .worry_list:last-child {
    z-index: 2;
  }
  #top_worry .worry_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc((100% / 3) - 20px);
    text-align: center;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  #top_worry .worry_list .list .comment {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    width: 100%;
    padding-bottom: 1em;
    color: var(--main-color);
    font-size: 1.4vw;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
    aspect-ratio: 16 / 9;
    object-fit: cover; 
    background: url(/wp-content/uploads/images/worry_cloud002.webp) center center no-repeat;
    background-size: contain;    
    box-sizing: border-box;
  }
  #top_worry .worry_list .list .comment span {
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 80%, rgba(243, 202, 62, 1) 80% 100%, rgba(243, 202, 62, 0) 100%);
  }
}
@media screen and (max-width:1024px) {
  #top_worry {
    position: relative;
    padding: 5rem 1.5rem;
  }
  #top_worry .worry_title {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
  }
  #top_worry .worry_title img {}
  #top_worry .worry_list .list {
    margin-bottom: 1.5rem;
    background: var(--bg-high-color);
  }
  #top_worry .worry_list .list .comment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border-radius: .6em;
    color: var(--main-color);
    line-height: 1;
    font-weight: var(--text-weight-bold); 
    box-sizing: border-box;
  }
  #top_worry .worry_list .list .comment span {
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 80%, rgba(243, 202, 62, 1) 80% 100%, rgba(243, 202, 62, 0) 100%);
  }
  #top_worry .worry_list .list .comment span:nth-child(n+2) {
    margin-top: .5em;
  }
}
/******************************************************
選ばれる理由
******************************************************/
@media screen and (min-width:1025px) {
  #top_reason {
    padding: 12rem 0;
  }
  #top_reason .reason_list {
    padding: 0 10%;
  }
  #top_reason .reason_list .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #top_reason .reason_list .list:nth-child(odd) {
    flex-direction: row-reverse;
    padding-left: 160px;
  }
  #top_reason .reason_list .list:nth-child(even) {
    padding-right: 160px;
  }
  
  #top_reason .reason_list .list:before {
    position: absolute;
    bottom: -80px;
    display: block;
    content: "";
    width: 240px;
    object-fit: cover;
    aspect-ratio: 2 / 3;
    z-index: 1;
  }   
  #top_reason .reason_list .list:nth-child(1):before {
    left: -80px;
    background: url(/wp-content/uploads/images/reason_img001s.webp) top center no-repeat;
    background-size: contain;
  } 
  #top_reason .reason_list .list:nth-child(2):before {
    right: -80px;
    background: url(/wp-content/uploads/images/reason_img002s.webp) top center no-repeat;
    background-size: contain;
  } 
  #top_reason .reason_list .list:nth-child(3):before {
    left: -80px;
    background: url(/wp-content/uploads/images/reason_img003s.webp) top center no-repeat;
    background-size: contain;
  }   
  #top_reason .reason_list .list:nth-child(n+2) {
    margin-top: 12rem;
  }
  #top_reason .reason_list .list .number {
    position: absolute;
    top: -.2em;
    color: var(--bg-high-color);
    font-size: 12vw;
    font-weight: 800;
    font-family: var(--alphabet);
    line-height: 1;
  }  
  #top_reason .reason_list .list:nth-child(odd) .number {
    left: 0;
  }  
  #top_reason .reason_list .list:nth-child(even) .number {
    right: 0;
  }
  
  #top_reason .reason_list .list .image {
    width: 540px;
  }
  #top_reason .reason_list .list .image img {
    box-shadow: -20px 20px 0 0 rgba(0,0,0,.02);
  }
  #top_reason .reason_list .list .text {
    position: relative;
    width: calc(100% - 600px);
    z-index: 1;
    box-sizing: border-box;
  }
  #top_reason .reason_list .list .title {
    margin-bottom: 1em;
    color: var(--main-color);
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_list .list .comment span {
    line-height: 1;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
}
@media screen and (max-width:1024px) {
  #top_reason {
    padding: 5rem 0;
  }
  #top_reason .reason_list {}
  #top_reason .reason_list .list {
    display: flex;
    flex-direction: column;
    position: relative;
  }
  #top_reason .reason_list .list .number {
    order: 1;
    color: var(--bg-high-color);
    text-align: center;
    font-size: 6rem;
    font-weight: 800;
    font-family: var(--alphabet);
    line-height: 1;
  }  

  #top_reason .reason_list .list .image {
    order: 3;
    margin-bottom: 3rem;
  }
  #top_reason .reason_list .list .text {
    order: 2;
    position: relative;
    padding: 3rem 1.5rem;
    z-index: 1;
    box-sizing: border-box;
  }
  #top_reason .reason_list .list .title {
    margin-bottom: 1em;
    color: var(--main-color);
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_list .list .comment span {
    line-height: 1;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
}
/******************************************************
会員様の声
******************************************************/
@media screen and (min-width:1025px) {
  #top_voice {
    margin-bottom: 12rem;
    padding: 12rem 0;
    background: #fff4f6;
  }
  #top_voice .inner {
    width: initial;
    max-width: 100%;
    padding: 0 8rem;
    box-sizing: border-box;
  }
  #top_voice .voice_message {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
    font-size: 3rem;
    text-align: center;
  }
  #top_voice .voice_message span {
    line-height: 1;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
  #top_voice .voice_message span:nth-child(n+2) {
    margin-top: .5em;
  }
  #top_voice .voice_comment {
    margin-bottom: 5rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }  
  #top_voice .voice_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_voice .voice_list .list {
    width: calc((100% / 2) - 2rem);
    margin-left: 4rem;
    padding: 4rem;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    box-shadow: -20px 20px 0 0 rgba(0,0,0,.02);    
    background: var(--text-high-color);
  }
  #top_voice .voice_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #top_voice .voice_list .list:nth-child(n+3) {
    margin-top: 4rem;
  }
  #top_voice .voice_list .list .title {
    margin-bottom: 1em;
    color: var(--main-color);
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }
  #top_voice .voice_list .list .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }  
  #top_voice .voice_list .list .image {
    width: 120px;
  }
  #top_voice .voice_list .list .image img {
    border-radius: 50%;
    background: var(--bg-high-color);
  }
  #top_voice .voice_list .list .comment {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width:1024px) {
  #top_voice {
    margin-bottom: 5rem;
    padding: 5rem 0;
    background: #fff4f6;
  }
  #top_voice .voice_message {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    text-align: center;
  }
  #top_voice .voice_message span {
    line-height: 1;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
  #top_voice .voice_message span:nth-child(n+2) {
    margin-top: .5em;
  }
  #top_voice .voice_comment {
    margin-bottom: 3rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }  
  #top_voice .voice_list {}
  #top_voice .voice_list .list {
    padding: 3rem 1.5rem;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    box-shadow: -8px 8px 0 0 rgba(0,0,0,.02);    
    background: var(--text-high-color);
  }
  #top_voice .voice_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_voice .voice_list .list .title {
    margin-bottom: 1em;
    color: var(--main-color);
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #top_voice .voice_list .list .flex {
  }  
  #top_voice .voice_list .list .image {
    width: 120px;
    margin: 0 auto 1em;
  }
  #top_voice .voice_list .list .image img {
    border-radius: 50%;
    background: var(--bg-high-color);
  }
  #top_voice .voice_list .list .comment {}
}
/******************************************************
婚活のステップ
******************************************************/
@media screen and (min-width:1025px) {
  #top_flow {
    margin-bottom: 12rem;
    background: #fff;
  }
  #top_flow .flow_message {
    margin-bottom: 5rem;
    font-size: 3rem;
    text-align: center;
  }
  #top_flow .flow_message span {
    line-height: 1;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
  #top_flow .flow_comment {
    margin-bottom: 5rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_flow .flow_list .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 5rem;
    border: 1px solid var(--border-color);
  }
  #top_flow .flow_list .list:nth-child(n+2) {
    margin-top: 6rem;
  }
  #top_flow .flow_list .list:nth-child(n+2):before {
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -80px;
    display: block;
    content: "";
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 40px solid var(--bg-high-color);    
  }
  #top_flow .flow_list .list .image {
    width: 300px;
  }
  #top_flow .flow_list .list .text {
    width: calc(100% - 360px);
  }
  #top_flow .flow_list .list .number {
    color: var(--main-color);
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--alphabet);
    line-height: 1.5;    
  }
  #top_flow .flow_list .list .number span {
    font-size: 6rem;
  }
  #top_flow .flow_list .list .title {
    margin-bottom: 1em;
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
  }
  #top_flow .flow_list .list .title span {
    line-height: 1;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
  
}
@media screen and (max-width:1024px) {
  #top_flow {
    margin-bottom: 5rem;
    background: #fff;
  }
  #top_flow .flow_message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    text-align: center;
  }
  #top_flow .flow_message span {
    line-height: 1;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
  #top_flow .flow_message span:nth-child(n+2) {
    margin-top: .5em;
  }  
  #top_flow .flow_comment {
    margin-bottom: 3rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_flow .flow_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    border: 1px solid var(--border-color);
  }
  #top_flow .flow_list .list:nth-child(n+2) {
    margin-top: 6rem;
  }
  #top_flow .flow_list .list:nth-child(n+2):before {
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -80px;
    display: block;
    content: "";
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 40px solid var(--bg-high-color);    
  }
  #top_flow .flow_list .list .image {
    text-align: center;
  }
  #top_flow .flow_list .list .image img {
    width: 60%;
    max-width: 360px;
  }
  #top_flow .flow_list .list .text {}
  #top_flow .flow_list .list .number {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--alphabet);
    line-height: 1.5;    
    text-align: center;
  }
  #top_flow .flow_list .list .number span {
    font-size: 4rem;
  }
  #top_flow .flow_list .list .title {
    margin-bottom: 1em;
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #top_flow .flow_list .list .title span {
    line-height: 1;
    font-weight: var(--text-weight-bold);
    background-image: linear-gradient(180deg, rgba(243, 202, 62, 0) 70%, rgba(243, 202, 62, 1) 70% 100%, rgba(243, 202, 62, 0) 100%);
  }
  
}
/******************************************************
よくあるご質問
******************************************************/
@media screen and (min-width:1025px) {
  #top_faq {
    padding: 12rem 0;
    background-image: linear-gradient(0deg, rgba(250, 250, 250, 0), rgba(250, 250, 250, 1));
  }
  #top_faq .faq_box {
    display :flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_faq .faq_box .faq_title {
    width: 360px;
  }
  #top_faq .faq_box .faq_list {
    width: calc(100% - 360px);
  }
  #top_faq .faq_box .faq_list dl {
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
    border-radius: .6em;
    background: #fff;
  }
  #top_faq .faq_box .faq_list dl:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_faq .faq_box .faq_list dt {
    position: relative;
    padding: 1.2em;
  }
  #top_faq .faq_box .faq_list dt .question {
    position: relative;
    padding: 0 2em;
    font-weight: var(--text-weight-bold);
    cursor: pointer;
  }
  #top_faq .faq_box .faq_list dt .question:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Q.";
    color: var(--main-color);
    font-size: 1.5em;    
    text-align: center;
    line-height: 1;
    font-weight: 800;
    font-family: var(--alphabet);
  }
  #top_faq .faq_box .faq_list dt .question:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    content: "\f063";
    font-family: "FontAwesome";    
    color: var(--border-color);
    font-size: 1em;    
    text-align: center;
    line-height: 1;
    font-weight: normal;
  }
  #top_faq .faq_box .faq_list dt.active .question:after {
    content: "\f062";
  }
  
  #top_faq .faq_box .faq_list dd {
    display: none;
    padding: 1.2em;
    border-top: 1px solid var(--border-color);
  }
  #top_faq .faq_box .faq_list dd .answer {
    position: relative;
    padding-left: 2em;
  }
  #top_faq .faq_box .faq_list dd .answer:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "A.";
    color: var(--sub-color);
    font-size: 1.5em;    
    text-align: center;
    line-height: 1;
    font-weight: 800;
    font-family: var(--alphabet);
  }  
}
@media screen and (max-width:1024px) {
  #top_faq {
    padding: 5rem 0;
    background-image: linear-gradient(0deg, rgba(250, 250, 250, 0), rgba(250, 250, 250, 1));
  }
  #top_faq .faq_box {}
  #top_faq .faq_box .faq_title {}
  #top_faq .faq_box .faq_list {}
  #top_faq .faq_box .faq_list dl {
    box-shadow: 0 0 8px 0 rgba(0,0,0,.15);
    border-radius: .6em;
    background: #fff;
  }
  #top_faq .faq_box .faq_list dl:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_faq .faq_box .faq_list dt {
    position: relative;
    padding: 1.2em;
  }
  #top_faq .faq_box .faq_list dt .question {
    position: relative;
    padding: 0 2em;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    cursor: pointer;
  }
  #top_faq .faq_box .faq_list dt .question:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Q.";
    color: var(--main-color);
    font-size: 1.5em;    
    text-align: center;
    line-height: 1;
    font-weight: 800;
    font-family: var(--alphabet);
  }
  #top_faq .faq_box .faq_list dt .question:after {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -.5em;
    content: "\f063";
    font-family: "FontAwesome";    
    color: var(--border-color);
    font-size: 1em;    
    text-align: center;
    line-height: 1;
    font-weight: normal;
  }
  #top_faq .faq_box .faq_list dt.active .question:after {
    content: "\f062";
  }
  
  #top_faq .faq_box .faq_list dd {
    display: none;
    padding: 1.2em;
    border-top: 1px solid var(--border-color);
  }
  #top_faq .faq_box .faq_list dd .answer {
    position: relative;
    padding-left: 2em;
  }
  #top_faq .faq_box .faq_list dd .answer:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "A.";
    color: var(--sub-color);
    font-size: 1.5em;    
    text-align: center;
    line-height: 1;
    font-weight: 800;
    font-family: var(--alphabet);
  }  
}
/******************************************************
ギャラリー
******************************************************/
@media screen and (min-width:1025px) {
  #top_gallery .gallery_list_fade .list {
    display: flex;
    width: 100%;
  }
  #top_gallery .gallery_list_fade .list .image {
    width: 25%;
  }
  #top_gallery .gallery_list_fade .list .image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_gallery .gallery_list_slider .list {
    width: calc(25vw - 2rem);
    margin: 0 1rem;
  }
  #top_gallery .gallery_list_fade .list .image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }  
}
@media screen and (max-width:1024px) {
  #top_gallery .gallery_list_fade .list {
    display: flex;
    width: 100%;
  }
  #top_gallery .gallery_list_fade .list .image {
    width: 25%;
  }
  #top_gallery .gallery_list_fade .list .image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_gallery .gallery_list_slider .list {
    width: calc(50vw - 1rem);
    margin: 0 .5rem;
  }
  #top_gallery .gallery_list_fade .list .image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }  
}
/******************************************************
メッセージ
******************************************************/
@media screen and (min-width:1025px) {
  #top_message {
    position: relative;
    background: url(/wp-content/uploads/images/bg_message.webp) center center no-repeat;
    background-size: cover;    
  }
  #top_message:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 25%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 1));
  }
  #top_message .message_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 1;
    aspect-ratio: 16 / 9;
  }  
  #top_message .message_title {
    margin-bottom: 1em;
    color: var(--main-color);
    font-size: 9.6rem;
    font-family: var(--alphabet);
    line-height: 1;
  }
  #top_message .message_comment {
    margin-bottom: 8rem;
    font-size: 3rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #top_message .message_link_list {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10%;
    box-sizing: border-box;
  }
  #top_message .message_link_list .list {
    width: calc(25% - 15px);
    margin-left: 2rem;
  }
  #top_message .message_link_list .list:nth-child(4n+1) {
    margin-left: 0;
  }
  #top_message .message_link_list .list:nth-child(n+5) {
    margin-top: 2rem;
  }
  #top_message .message_link_list .list a {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #top_message .message_link_list .list a:hover {
    opacity: .7;
  }
}
@media screen and (max-width:1024px) {
  #top_message {
    position: relative;
    padding: 5rem 0;
    background: url(/wp-content/uploads/images/bg_message.webp) center center no-repeat;
    background-size: cover;    
  }
  #top_message:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 25%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 1));
  }
  #top_message .message_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    z-index: 1;
  }
  
  #top_message .message_title {
    margin-bottom: 1em;
    color: var(--main-color);
    font-size: 3rem;
    font-family: var(--alphabet);
    line-height: 1;
  }
  #top_message .message_comment {
    margin-bottom: 3rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #top_message .message_link_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1.5rem;
  }
  #top_message .message_link_list .list {
    width: calc(50% - 5px);
    margin-left: 1rem;
  }
  #top_message .message_link_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #top_message .message_link_list .list:nth-child(n+3) {
    margin-top: 1rem;
  }
}
/******************************************************
お問い合わせ
******************************************************/
@media screen and (min-width:1025px) {
  .top_contact {
    position: relative;
    padding: 12rem 0;
    text-align: center;
    background-color: #fff;
    background-image: linear-gradient(90deg, #fafafa80 20px, transparent 20px), linear-gradient(#fafafa80 20px, transparent 20px);
    background-position: 10px 10px;
    background-size: 40px 40px;
  }
  .top_contact:before {
    cisplay: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 120px;
    height: 120px;
    background: var(--main-color);
    clip-path: polygon(100% 0, 0 0, 0 100%);
  }
  .top_contact:after {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 120px;
    height: 120px;
    background: var(--main-color);    
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  .top_contact .contact_award_cover {
    margin-bottom: 6rem;
    padding: 5px;
    background-image: radial-gradient(circle, rgba(255, 242, 58, 1), rgba(224, 162, 8, 1) 80%);
  }
  .top_contact .contact_award {
    padding: 6rem;
    line-height: 1.6;
    background: var(--text-high-color);
  }
  .top_contact .contact_award .award_comment {
    margin-bottom: 1.5em;
    color: #72c7ee;
    font-size: 3rem;
    font-family: var(--serif);
  }
  .top_contact .contact_award .award_comment p:nth-child(n+2) {
    margin-top: .8em;
  }
  .top_contact .contact_award .award_comment .large {
    font-size: 3rem;
  }
  .top_contact .contact_award .award_comment .pink {
    color: #f57a97;
  }
  .top_contact .contact_award .award_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_contact .contact_award .award_list .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 360px;
    margin: 0 1rem;
  }
  .top_contact .contact_award .award_list .list .image {
    margin-bottom: 1.2em;
  }
  .top_contact .contact_award .award_list .list .image img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }  
  .top_contact .contact_award .award_list .list .name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    color: #f57a97;
    font-size: 2.4rem;
    font-family: var(--serif);
  }  
  .top_contact .contact_message {
    margin-bottom: 6rem;
    color: var(--text-color);
    font-size: 3rem;
    font-family: var(--serif);
    line-height: 1.5;
    text-shadow: 0px 0px 10px rgba(255,255,255, 1);
  }
  .top_contact .contact_message p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  .top_contact .contact_btn_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_contact .contact_btn_list .list {
    width: 480px;
    margin: 0 2rem;
  }
  .top_contact .contact_btn_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 8rem;
    color: var(--text-high-color);
    font-weight: var(--text-weight-bold);
    border-radius: 4rem;
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  .top_contact .contact_btn_list .list a:hover {
    opacity: .7;
  }  
  .top_contact .contact_btn_list .list a.pink {
    background-image: linear-gradient(315deg, rgba(243, 72, 113, 1), rgba(245, 122, 151, 1));
  }
  .top_contact .contact_btn_list .list a.blue {
    background-image: linear-gradient(315deg, rgba(55, 171, 225, 1), rgba(114, 199, 238, 1));
  }
}
@media screen and (max-width:1024px) {
  .top_contact {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    background-color: #fff;
    background-image: linear-gradient(90deg, #fafafa80 20px, transparent 20px), linear-gradient(#fafafa80 20px, transparent 20px);
    background-position: 10px 10px;
    background-size: 40px 40px;
  }
  .top_contact:before {
    cisplay: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 50px;
    background: var(--main-color);
    clip-path: polygon(100% 0, 0 0, 0 100%);
  }
  .top_contact:after {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 50px;
    height: 50px;
    background: var(--main-color);    
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  .top_contact .contact_award_cover {
    margin-bottom: 3rem;
    padding: 3px;
    background-image: radial-gradient(circle, rgba(255, 242, 58, 1), rgba(224, 162, 8, 1) 80%);
  }
  .top_contact .contact_award {
    padding: 3rem 1rem;
    line-height: 1.6;
    background: var(--text-high-color);
  }
  .top_contact .contact_award .award_comment {
    margin-bottom: 1.5em;
    color: #72c7ee;
    font-size: 1.6rem;
    font-family: var(--serif);
  }
  .top_contact .contact_award .award_comment p:nth-child(n+2) {
    margin-top: .8em;
  }
  .top_contact .contact_award .award_comment .pink {
    color: #f57a97;
  }
  .top_contact .contact_award .award_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_contact .contact_award .award_list .list {
    display: flex;
    flex-direction: column;
    width: calc(50% - 5px);
  }
  .top_contact .contact_award .award_list .list:nth-child(n+2) {
    margin-left: 10px;
  }
  .top_contact .contact_award .award_list .list .image {
    margin-bottom: 1.2em;
  }
  .top_contact .contact_award .award_list .list .image img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }  
  .top_contact .contact_award .award_list .list .name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    color: #f57a97;
    font-size: 1.2rem;
    font-family: var(--serif);
  }  
  .top_contact .contact_message {
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 1.6rem;
    font-family: var(--serif);
    line-height: 1.5;
    text-shadow: 0px 0px 10px rgba(255,255,255, 1);
  }
  .top_contact .contact_message p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  .top_contact .contact_btn_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .top_contact .contact_btn_list .list {
    width: 300px;
    margin: 0 auto;
  }
  .top_contact .contact_btn_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  .top_contact .contact_btn_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 6rem;
    color: var(--text-high-color);
    font-weight: var(--text-weight-bold);
    border-radius: 3rem;
    background: var(--main-color);
  }
  .top_contact .contact_btn_list .list a.pink {
    background-image: linear-gradient(315deg, rgba(243, 72, 113, 1), rgba(245, 122, 151, 1));
  }
  .top_contact .contact_btn_list .list a.blue {
    background-image: linear-gradient(315deg, rgba(55, 171, 225, 1), rgba(114, 199, 238, 1));
  }
}