/*
 * Theme Name: SODJ THEME
 * Version: 1.0
 * Author: Kaito Sagawa
 * Description: このテーマはSODJ専用テーマです。
*/

/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&family=Zen+Kaku+Gothic+New&display=swap'); */
:root {
  --normal-content-size: 968px;
  --wide-content-size: 1213px;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  width: 100%;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
/* img {
  max-height: 100%;
  max-width: 100%;
} */
a {
  max-height: 100%;
  max-width: 100%;
}
a:hover {
  opacity: 0.65;
}
.sp-show {
  display: none;
}
@media screen and (max-width: 1044px) {
  .sp-show {
    display: inline;
  }
}

/*===========================================
	ヘッダーの設定
===========================================*/
header {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1044px) {
  header {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
  }
}
.header-inner {
  width: var(--wide-content-size);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 31px 34px;
}
@media screen and (max-width: 1044px) {
  .header-inner {
    margin: 20px 16px;
  }
}
@media screen and (max-width: 603px) {
  .header-inner {
    margin: 15px 16px;
  }
}
.logo-button {
  max-width: 250px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 700px) {
  .logo-button {
    max-width: 206px;
    font-size: 11px;
    gap: 0;
  }
  .logo-button.is-active {
    color: #fff;
  }
}
.logo-button > p {
  letter-spacing: 0em;
}
@media screen and (max-width: 700px) {
  .logo-button > p {
    letter-spacing: 0em;
  }
}
.logo-button > .logo {
  width: 100%;
  background-image: url("images/logo.png");
  height: 57px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
}
@media screen and (max-width: 700px) {
  .logo-button.is-active .logo {
    display: none;
  }
}
.logo--mb {
  display: none;
}
.logo--mb.is-active {
  width: 100%;
  background-image: url("images/logo--white.png");
  margin-top: 10px;
  height: 47px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
}
.header-nav-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 24px;
}
@media screen and (max-width: 1044px) {
  .header-nav-container {
    gap: 10px;
  }
}
@media screen and (max-width: 603px) {
  .header-nav-container {
    gap: 0;
  }
}
.header-nav > ul {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: right;
  margin-left: 16px;
}
@media screen and (max-width: 603px) {
  .header-nav.--top > ul {
    display: none;
  }
}
@media screen and (max-width: 1044px) {
  .header-nav.--bottom > ul {
    display: none;
  }
}
.contact-button {
  background-color: black;
  color: white;
  display: block;
  padding: 10px 15px;
}

.hamburger-button {
  display: none;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1044px) {
  .hamburger-button {
    background-image: url("images/hamburger-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px;
    border-radius: 5px;
    display: block;
    height: 50px;
    width: 50px;
  }
  .hamburger-button:hover {
    background-color: var(--bg-gray-color);
    cursor: pointer;
  }
  .hamburger-button.is-active {
    color: white;
    background-image: url("images/batsu.svg");
    background-size: 30px;
  }
  .hamburger-button:hover.is-active {
    color: white;
    background-image: url("images/batsu.svg");
  }
}
.hamburger-menu {
  display: none;
  z-index: 2;
}
@media screen and (max-width: 1044px) {
  .hamburger-menu {
    background-color: rgba(0, 0, 0, 0.98);
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 2;
    padding-top: 100px;
  }
  .hamburger-menu.is-active {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .hamburger-menu .bogo-language-switcher {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .hamburger-menu > ul {
    color: white;
    font-size: 20px;
    margin-left: 50px;
    margin-right: 50px;
    width: 100%;
  }
  .hamburger-menu > ul > li {
    border-bottom: white 1px solid;
  }
  .hamburger-menu > ul > li > a {
    display: block;
    height: 100%;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 100%;
  }
  .hamburger-menu .bogo-language-switcher > li > span {
    padding-bottom: 20px;
  }
}

/*===========================================
	フッターの設定
===========================================*/
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  background-color: #f6f6f6;
  width: 100%;
}
.footer-inner {
  /* max-width: var(--wide-content-size); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 31px;
  margin-bottom: 62px;
  margin-left: 34px;
  margin-right: 34px;
}
@media screen and (max-width: 700px) {
  .footer-inner {
    flex-direction: column-reverse;
    align-items: start;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    margin-top: 41px;
    margin-bottom: 52px;
    gap: 58px;
  }
}
.footer-inner > a {
  max-width: 250px;
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-inner > a > p {
  letter-spacing: 0.2em;
}
.footer-inner > a > img {
  width: 100%;
}
.footer-nav-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .footer-nav-container {
    flex-direction: column-reverse;
    justify-content: left;
    align-items: flex-start;
    gap: 41px;
  }
}
.footer-nav-container > .sp-show {
  display: none;
}
@media screen and (max-width: 700px) {
  .footer-nav-container > .sp-show {
    display: block;
    width: 100%;
    background-color: #000;
    height: 1px;
  }
}
.footer-nav > ul {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: right;
  margin-left: 30px;
}
@media screen and (max-width: 700px) {
  .footer-nav > ul {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    margin-left: 0;
    gap: 30px;
  }
}
.contact-button {
  background-color: black;
  color: white;
  display: block;
  padding: 10px 15px;
}
.footer-info {
  padding-top: 23px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  background-color: black;
  color: white;
  width: 100%;
  align-items: center;
  font-size: 13px;
}
@media screen and (max-width: 700px) {
  .footer-info {
    padding-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 30px;
    align-items: flex-start;
    gap: 30px;
  }
}
.footer-info-nav > ul {
  display: flex;
  gap: 68px;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .footer-info-nav > ul {
    flex-direction: column;
    gap: 18px;
  }
}

/*===========================================
	共通コンポーネント
===========================================*/
@media screen and (max-width: 700px) {
  .sp-hidden {
    display: none;
  }
}
h1 {
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  font-weight: 800;
}
h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
  line-height: 150%;
  text-align: center;
}
.--en h2 {
  letter-spacing: 0;
}
@media screen and (max-width: 700px) {
  h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 550px) {
  h2 {
    font-size: 20px;
  }
}
.section-inner {
  margin-top: 80px;
  width: var(--normal-content-size);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-bottom: 140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .section-inner {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .section-inner {
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 30px;
  }
}
.composition {
  width: 100%;
  line-height: 180%;
}
@media screen and (max-width: 700px) {
  .composition {
    font-size: 14px;
  }
}
.text-link {
  color: #5157f0;
  text-decoration: underline;
}
/*###### 固定ページのタイトル ######*/
.page-title-section {
  display: flex;
  width: 1085.96px;
  padding-top: 35px;
  padding-bottom: 80px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1120px) {
  .page-title-section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 700px) {
  .page-title-section {
    flex-direction: column;
    justify-content: left;
    gap: 30px;
    padding-bottom: 0;
  }
}
.page-title-section > .page-title {
  font-size: 40px;
  line-height: 150%;
  letter-spacing: 0.32em;
  width: 100%;
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  .page-title-section > .page-title {
    font-size: 25px;
  }
}
.page-title-section .page-title.--en {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}
@media screen and (max-width: 700px) {
  .page-title-section .page-title.--en {
    font-size: 20px;
  }
}
.page-title-section > img {
  margin-left: auto;
  min-width: 279.96px;
  height: 114.25px;
}
@media screen and (max-width: 500px) {
  .page-title-section > img {
    min-width: 177px;
    height: 73px;
  }
}
/*###### 世界で展開されている松濤館大島道場 ######*/
.international-section {
  background-color: #000;
  width: 100%;
  color: #fff;
}
.international-section > .section-inner > img {
  width: 100%;
  height: auto;
}
.international-section .country-box-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .international-section .country-box-container {
    gap: 16px;
  }
}
.international-section .country-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  color: #000;
  width: 100%;
  padding: 14px 20px;
}
@media screen and (max-width: 700px) {
  .international-section .country-box {
    padding: 14px 10px;
  }
}
.international-section .country-box > .title {
  display: flex;
  padding-bottom: 13px;
  border-bottom: #000 solid 1px;
  align-items: center;
  width: 100%;
  gap: 13px;
}
@media screen and (max-width: 700px) {
  .international-section .country-box > .title {
    justify-content: center;
  }
}
.international-section .country-box > .title > img {
  width: 48px;
  height: 28px;
}
@media screen and (max-width: 700px) {
  .international-section .country-box > .title > img {
    width: 38px;
    height: 22px;
  }
}
.international-section .country-box > .title > h3 {
  font-size: 21px;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
}
@media screen and (max-width: 700px) {
  .international-section .country-box > .title > h3 {
    font-size: 18px;
  }
}
.international-section .country-box > .composition {
  font-size: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 700px) {
  .international-section .country-box > .composition {
    font-size: 14px;
    letter-spacing: 0em;
  }
}
/*###### ニュース ######*/
.news-section {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .news-section > .section-inner {
    gap: 20px;
  }
}
.news-section .news-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: end;
}
@media screen and (max-width: 700px) {
  .news-section .news-container > a {
    font-size: 14px;
  }
}
.news-section .news-container > ul {
  width: 100%;
}
.news-section .news-container > ul > li {
  width: 100%;
}
.news-section .news-container > ul > li > a {
  padding: 20px 10px;
  display: flex;
  gap: 38px;
  align-items: center;
  border-bottom: #000 solid 1px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .news-section .news-container > ul > li > a {
    padding: 13px 10px;
    gap: 14px;
  }
}
@media screen and (max-width: 400px) {
  .news-section .news-date {
    font-size: 12px;
  }
}
.news-section .news-date.--en {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}
.news-section .news-title {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
  line-height: 150%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 800px) {
  .news-section .news-title {
    font-size: 14px;
  }
}

/*###### フォーム ######*/
.form-section {
  background-color: #000;
  color: #fff;
  width: 100%;
}
.form-section .content-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.form-section .composition {
  text-align: center;
  width: 100%;
}
.form-section .wpcf7 {
  background-color: #f6f6f6;
  color: #000;
  width: 100%;
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  .form-section .wpcf7 {
    font-size: 16px;
  }
}
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 39px;
  padding: 58px 96px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .wpcf7-form {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 17px;
  }
}
.wpcf7-form > .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 700px) {
  .wpcf7-form > .title {
    font-size: 18px;
  }
}
.wpcf7-form > .title > p {
  font-size: 14px;
}
.wpcf7-form > p {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}
.wpcf7-form > p > span > .text-input {
  background-color: #fff;
  border: #000 solid 1px;
  height: 50px;
  width: 100%;
  padding: 10px 15px;
}
@media screen and (max-width: 700px) {
  .wpcf7-form > p > span > .text-input {
    height: 32px;
    padding: 5px 10px;
    margin-top: -12px;
  }
}
.wpcf7-form > p > small {
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  .wpcf7-form > p > small {
    font-size: 13px;
  }
}
.wpcf7-form > p > span > .date-input {
  background-color: #fff;
  border: #000 solid 1px;
  height: 50px;
  width: 300px;
  padding: 10px 15px;
}
@media screen and (max-width: 700px) {
  .wpcf7-form > p > span > .date-input {
    height: 32px;
    padding: 5px 10px;
    width: 100%;
  }
}
.wpcf7-form > p > span > textarea {
  background-color: #fff;
  border: #000 solid 1px;
  min-height: 180px;
  width: 100%;
  padding: 10px 15px;
}
@media screen and (max-width: 700px) {
  .wpcf7-form > p > span > textarea {
    min-height: 167px;
    padding: 5px 10px;
  }
}
.wpcf7-form > p > .submit-button {
  background-color: #000;
  color: #fff;
  max-width: 85px;
  padding: 15px 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 700px) {
  .wpcf7-form > p > .submit-button {
    min-width: 100%;
    text-align: center;
  }
}
/*###### 会費について ######*/
.fee-section {
  background-color: #f6f6f6;
  width: 100%;
}
.fee-section > .section-inner {
  gap: 83px;
}
@media screen and (max-width: 700px) {
  .fee-section > .section-inner {
    gap: 48px;
  }
}
.fee-section .fee-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
}
.fee-section .fee-container > .entry-fee {
  display: flex;
  align-items: center;
  gap: 105px;
}
@media screen and (max-width: 700px) {
  .fee-section .fee-container > .entry-fee {
    gap: 30px;
  }
  .--en .fee-section .fee-container > .entry-fee {
    gap: 20px;
  }
  .fee-section .fee-container > .entry-fee p {
    padding-left: 16px;
  }
  .--en .fee-section .fee-container > .entry-fee p {
    padding-left: 0;
  }
}
.fee-section .fee-container > .annual-fee {
  display: flex;
  align-items: center;
  gap: 82px;
}
@media screen and (max-width: 700px) {
  .fee-section .fee-container > .annual-fee {
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .--en .fee-section .fee-container > .annual-fee {
    gap: 50px;
  }
}
.fee-section .fee-container h3 {
  font-size: 25px;
}
@media screen and (max-width: 700px) {
  .fee-section .fee-container h3 {
    font-size: 16px;
  }
}
.fee-section .fee-container p {
  font-size: 35px;
}
@media screen and (max-width: 700px) {
  .fee-section .fee-container p {
    font-size: 25px;
  }
}
.fee-section .fee-container span {
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  .fee-section .fee-container span {
    font-size: 16px;
  }
}
.fee-section .fee-container > p {
  font-size: 16px;
  text-align: center;
  line-height: 180%;
  color: #6e6a6a;
  margin-top: 20px;
}

/*===========================================
	各ページ固有設定
===========================================*/

/*-------------------------------------------
index.php
-------------------------------------------*/
#top.--en {
  font-family: "Noto Serif JP", serif;
}
#top .main-visual {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  padding-right: 68px;
  align-items: end;
  height: calc(100vh - 200px);
  min-height: 621px;
}
@media screen and (max-width: 1044px) {
  #top .main-visual {
    padding-right: 0;
  }
}
#top .main-visual-container {
  list-style: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
}
#top .main-visual-content {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
}
#top .main-visual-content img {
  width: 100%;
  height: 100%;
  transition: 4s linear transform 0.4s;
  object-fit: cover;
  position: relative;
}
#top .main-visual-image1--sp {
  display: none;
}
#top .main-visual-image2--sp {
  display: none;
}
#top .main-visual-image3--sp {
  display: none;
}
@media screen and (max-width: 550px) {
  #top .main-visual-image1 {
    display: none;
  }
  #top .main-visual-image2 {
    display: none;
  }
  #top .main-visual-image3 {
    display: none;
  }
  #top .main-visual-image1--sp {
    display: block;
  }
  #top .main-visual-image2--sp {
    display: block;
  }
  #top .main-visual-image3--sp {
    display: block;
  }
}
@media screen and (max-width: 1044px) {
  #top .main-visual-cover {
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000;
    opacity: 0.25;
    width: 100%;
    height: 100%;
  }
}
#top .main-visual-content .main-visual-text {
  position: absolute;
  color: white;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 34px;
  bottom: 62px;
  right: 42px;
  /* z-index: 1; */
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: end;
}
#top.--en .main-visual-content .main-visual-text {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  text-align: end;
}
@media screen and (max-width: 1044px) {
  #top .main-visual-content .main-visual-text {
    writing-mode: vertical-rl;
    align-items: start;
    font-size: 25px;
    top: 20px;
  }
  #top.--en .main-visual-content .main-visual-text {
    text-align: start;
  }
}
#top .main-visual-content .main-visual-text .accent-blue {
  color: #dfe8ff;
}
#top .main-visual-content .main-visual-text .accent-red {
  color: #f8dcdc;
}
#top .main-visual-content .zoom {
  transform: scale(1.05);
}
#top .main-visual .scroll-indicator {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  width: 68px;
  height: 311px;
  padding-left: 34px;
}
@media screen and (max-width: 1044px) {
  #top .main-visual .scroll-indicator {
    display: none;
  }
}
#top .main-visual .scroll-indicator div {
  display: flex;
  transform: rotateZ(-90deg);
  transform-origin: 0 50% 0;
  width: 311px;
  justify-content: left;
}
#top .main-visual .scroll-indicator div > span {
  height: 3px;
  position: relative;
  width: 311px;
  background-color: #bebebe;
}
@keyframes animation-scroll {
  0% {
    bottom: 0px;
    left: 100%;
    width: 0;
  }
  60% {
    left: 0px;
    width: 100%;
  }
  100% {
    width: 0;
  }
}
#top .main-visual .scroll-indicator > div > span::after {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: animation-scroll;
  animation-timing-function: linear;
  background-color: #000;
  content: "";
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 0;
}
#top .main-visual .page-indicator {
  font-family: "Roboto", sans-serif;
  position: absolute;
  color: white;
  bottom: 10px;
  left: 50%;
  font-size: 12px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1044px) {
  #top .main-visual .page-indicator {
    display: none;
  }
}
#top .main-visual .main-visual-arrow {
  display: none;
}
@media screen and (max-width: 1044px) {
  #top .main-visual .main-visual-arrow {
    position: absolute;
    display: block;
    bottom: 0;
    width: 67px;
    height: 41.5px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*###### 空手は精神力・集中力を鍛え、自分を見つめ直す武道です。 ######*/
#top .intro-section {
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
}
@media screen and (max-width: 700px) {
  #top .intro-section > .section-inner {
    margin-top: 0px;
  }
  #top.--en .intro-section > .section-inner {
    margin-top: 120px;
  }
}
@media screen and (max-width: 552px) {
  #top.--en .intro-section > .section-inner {
    margin-top: 30px;
  }
}
#top .intro-section > .background-image {
  position: absolute;
  width: 550px;
  height: 545px;
  margin-left: auto;
  margin-right: auto;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 700px) {
  #top .intro-section > .background-image {
    top: 50%;
  }
}
@media screen and (max-width: 552px) {
  #top .intro-section > .background-image {
    width: 80%;
    height: auto;
  }
}
/*###### 松濤館大島道場 ジャパン ######*/
#top .about-section {
  height: 561px;
  width: 100%;
  color: white;
  position: relative;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 517px) {
  #top.--en .about-section {
    height: 580px;
  }
}
#top .about-section::after {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.73)), url("");
  position: absolute;
}
@media screen and (max-width: 700px) {
  #top .about-section {
    display: flex;
    justify-content: center;
    height: 400px;
  }
}
#top .about-section .section-inner {
  margin-top: 136px;
}
@media screen and (max-width: 700px) {
  #top .about-section .section-inner {
    margin-top: auto;
    margin-bottom: auto;
    padding-top: auto;
    padding-bottom: auto;
    justify-content: center;
    align-items: center;
  }
}
/*###### 当道場の特徴4つ ######*/
#top .features-section h2 > span {
  font-size: 44px;
  color: #434040;
}
@media screen and (max-width: 800px) {
  #top .features-section h2 > span {
    font-size: 25px;
  }
}
#top .features-section .feature-box-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#top .features-section .feature-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 700px) {
  #top .features-section .feature-box {
    gap: 14px;
    background-color: #f6f6f6;
    padding-left: 16px;
    padding-right: 16px;
  }
}
#top .features-section .feature-box > .title {
  background-color: #000;
  color: #fff;
  padding: 15px 24px;
  font-size: 22px;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  line-height: 150%;
  text-align: justify;
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 700px) {
  #top .features-section .feature-box > .title {
    font-size: 18px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
    margin-left: -16px;
    margin-right: -16px;
  }
  #top .features-section .feature-box > .title > p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  #top .features-section .feature-box > .title {
    gap: 2px;
  }
  #top .features-section .feature-box > .title > p {
    font-size: 14px;
  }
}

#top .features-section .feature-box > .media {
  display: flex;
  gap: 49px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  #top .features-section .feature-box > .media {
    gap: 14px;
    padding-bottom: 20px;
  }
}
#top .features-section .feature-box > .media > img {
  height: 174px;
  min-width: 287px;
}
@media screen and (max-width: 767px) {
  #top .features-section .feature-box > .media > img {
    width: 100%;
    height: auto;
  }
}
#top .features-section .feature-box > .media > .composition {
  min-width: 400px;
  width: 50vw;
  max-width: 632px;
}
@media screen and (max-width: 767px) {
  #top .features-section .feature-box > .media > .composition {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
  }
}
/*###### 道場生の紹介 ######*/
#top .member-intro-section {
  background-color: #f6f6f6;
  width: 100%;
}
#top .member-intro-section > .section-inner {
  margin-bottom: 0px;
}
#top .member-intro-section .member-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 46px;
}
@media screen and (max-width: 1044px) {
  #top .member-intro-section .member-box-container {
    justify-content: center;
    gap: 20px;
  }
}
#top .member-intro-section .member-box {
  width: 459px;
  background-color: #fff;
}
@media screen and (max-width: 493px) {
  #top .member-intro-section .member-box {
    width: 100%;
  }
}
#top .member-intro-section .member-box > img {
  height: 313.26px;
}
@media screen and (max-width: 493px) {
  #top .member-intro-section .member-box > img {
    width: 100%;
    height: auto;
  }
}
#top .member-intro-section .member-info-container {
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 41px 28px;
}
@media screen and (max-width: 700px) {
  #top .member-intro-section .member-info-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#top .member-intro-section .member-info-container > h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 22px;
}
#top .member-intro-section .member-info-container > h3 > span {
  font-size: 16px;
}
#top .member-intro-section .composition-container {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-right: 16px;
}
#top .member-intro-section .composition-container > h4 {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
}
#top .member-intro-section .composition-container > .composition {
  margin-left: 16px;
  line-height: 150%;
}
/*###### 指導員の紹介 ######*/
#top .instructor-section {
  background-color: #f6f6f6;
  width: 100%;
}
#top .instructor-box-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  #top .instructor-box-container {
    gap: 25px;
  }
}
#top .instructor-section .instructor-box {
  position: relative;
  width: 100%;
}
#top .instructor-section .instructor-box > img {
  width: 100%;
  object-fit: cover;
  height: 412.01px;
}
@media screen and (max-width: 800px) {
  #top .instructor-section .instructor-box > img {
    height: 358px;
  }
}
@media screen and (max-width: 500px) {
  #top .instructor-section .instructor-box > img {
    height: 266px;
  }
}
#top .instructor-section .info-box {
  display: flex;
  gap: 25px;
  justify-content: right;
  align-items: center;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  background-color: rgba(0, 0, 0, 0.48);
  position: absolute;
  bottom: 0;
  padding: 24px 23px;
  width: 100%;
}
@media screen and (max-width: 1044px) {
  #top .instructor-section .info-box {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 16px 10px;
  }
}
#top .instructor-section .info-box.--left {
  justify-content: left;
}
#top .instructor-section .info-box > p {
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  #top .instructor-section .info-box > p {
    font-size: 14px;
  }
}
#top .instructor-section .info-box > h3 {
  font-size: 30px;
}
@media screen and (max-width: 700px) {
  #top .instructor-section .info-box > h3 {
    font-size: 20px;
  }
}
/*###### 横長画像 ######*/
#top .wide-image-section {
  width: 100%;
  height: 534px;
  color: white;
  position: relative;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  #top .wide-image-section {
    height: 350px;
  }
}
@media screen and (max-width: 700px) {
  #top .wide-image-section {
    height: 259px;
    background-attachment: initial;
  }
}
#top .wide-image-section::after {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
  opacity: 0.21;
  position: absolute;
  display: block;
}
/*###### 稽古場所・日程 ######*/
#top .practice-info-section {
  background-color: white;
  z-index: 100;
  width: 100%;
}
#top .practice-info-section .practice-info-box-container {
  display: flex;
  justify-content: space-between;
  gap: 58px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  #top .practice-info-section .practice-info-box-container {
    gap: 16px;
  }
}
@media screen and (max-width: 877px) {
  #top .practice-info-section .practice-info-box-container {
    gap: 16px;
  }
}
#top .practice-info-section .practice-info-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.25);
  padding: 18px 24px 28px 24px;
}
@media screen and (max-width: 877px) {
  #top .practice-info-section .practice-info-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
#top .practice-info-section .practice-info-box > h3 {
  margin-left: auto;
  margin-right: auto;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
}
#top .practice-info-section .practice-info-box > .composition-container {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  height: 183px;
  justify-content: space-around;
  color: #6e6a6a;
}
#top.--en .practice-info-section .practice-info-box > .composition-container {
  height: 220px;
}
@media screen and (max-width: 877px) {
  #top .practice-info-section .practice-info-box > .composition-container {
    width: auto;
  }
}
#top
  .practice-info-section
  .practice-info-box
  > .composition-container
  > .composition {
  line-height: 150%;
}
@media screen and (max-width: 877px) {
  #top
    .practice-info-section
    .practice-info-box
    > .composition-container
    > .composition {
    width: auto;
  }
}
#top .practice-info-section .practice-info-box > iframe {
  width: 367px;
  height: 133px;
  border-radius: 5px;
}
@media screen and (max-width: 877px) {
  #top .practice-info-section .practice-info-box > iframe {
    width: 100%;
  }
}
#top .practice-info-section > .section-inner > p {
  color: #6e6a6a;
  margin-right: auto;
  margin-left: 70px;
}
@media screen and (max-width: 877px) {
  #top .practice-info-section > .section-inner > p {
    margin-left: 0px;
    font-size: 14px;
  }
}
/*###### よくある質問 ######*/
#top .qa-section .qa-box-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  color: #717171;
}
@media screen and (max-width: 700px) {
  #top .qa-section .qa-box-container {
    gap: 17px;
  }
}
#top .qa-section .qa-box {
  display: flex;
  flex-direction: column;
  gap: 27px;
  background-color: #f6f6f6;
  font-size: 20px;
  padding: 39px 33px;
}
@media screen and (max-width: 700px) {
  #top .qa-section .qa-box {
    font-size: 14px;
    gap: 16px;
    padding: 16px;
  }
}
#top .qa-section .qa-box .title {
  display: flex;
  align-items: center;
  gap: 23px;
  font-family: "Shippori Mincho", serif;
  border-bottom: #717171 solid 2px;
  padding-bottom: 27px;
  line-height: 180%;
}
@media screen and (max-width: 700px) {
  #top .qa-section .qa-box .title {
    gap: 16px;
    padding-bottom: 17px;
  }
  #top .qa-section .qa-box .title > h3 {
    padding-top: 2px;
  }
}
#top .qa-section .qa-box .title > span {
  font-size: 30px;
}
@media screen and (max-width: 700px) {
  #top .qa-section .qa-box .title > span {
    font-size: 25px;
  }
}
#top .qa-section .qa-box > p {
  padding-left: 48px;
}
@media screen and (max-width: 700px) {
  #top .qa-section .qa-box > p {
    padding-left: 0;
  }
}
/*-------------------------------------------
about-sodj.php
-------------------------------------------*/
/*###### 大島先生の紹介 ######*/
#about-sodj .about-oshima-sensei-section > .section-inner {
  margin-top: 50px;
  flex-direction: row;
  gap: 109px;
  font-size: 18px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  #about-sodj .about-oshima-sensei-section > .section-inner {
    flex-direction: column;
    gap: 30px;
  }
}
#about-sodj .about-oshima-sensei-section > .section-inner > .box {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  min-width: 267px;
}
#about-sodj .about-oshima-sensei-section .box > img {
  width: 100%;
  height: 320px;
  object-fit: contain;
}
#about-sodj .about-oshima-sensei-section .box > .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
#about-sodj .about-oshima-sensei-section .box > .info > small {
  font-size: 14px;
}
#about-sodj .about-oshima-sensei-section .box > .info > p {
  font-size: 24px;
  letter-spacing: 0.32em;
}
/*###### 大島 劼先生 略歴  ######*/
#about-sodj .biography-of-oshima-sensei-section {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
    url("images/biography-of-ohshima-background-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 584px) {
  #about-sodj .biography-of-oshima-sensei-section {
    background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
      url("images/biography-of-ohshima-background-image--sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
#about-sodj .biography-of-oshima-sensei-section .section-inner {
  margin-bottom: 100px;
}
#about-sodj
  .biography-of-oshima-sensei-section
  > .section-inner
  > .composition {
  font-weight: 300;
}
/*###### 空手という武術  ######*/
#about-sodj .about-karate-section {
  width: 100%;
}
#about-sodj .about-karate-section .section-inner {
  margin-bottom: 0;
}
#about-sodj .about-karate-section .media {
  display: flex;
  width: 100%;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  #about-sodj .about-karate-section .media {
    flex-direction: column;
    gap: 30px;
  }
}
#about-sodj .about-karate-section .media > img {
  min-width: 404px;
  height: 288px;
}
@media screen and (max-width: 1000px) {
  #about-sodj .about-karate-section .media > img {
    min-width: 40.4vw;
    height: auto;
  }
}
#about-sodj .about-karate-section .media > .composition {
  font-size: 18px;
  letter-spacing: 0;
}
@media screen and (max-width: 700px) {
  #about-sodj .about-karate-section .media > .composition {
    font-size: 14px;
  }
}
/*###### 松濤館大島道場の空手  ######*/
#about-sodj .about-karate-of-oshima-dojo .section-inner {
  margin-bottom: 0;
}
#about-sodj .about-karate-of-oshima-dojo .gallery {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  #about-sodj .about-karate-of-oshima-dojo .gallery {
    gap: 1vw;
    margin-left: -16px;
    margin-right: -16px;
  }
}

#about-sodj .about-karate-of-oshima-dojo .gallery img {
  width: 316px;
  height: 225px;
}
@media screen and (max-width: 1000px) {
  #about-sodj .about-karate-of-oshima-dojo .gallery img {
    width: 31.6vw;
    height: 22.5vw;
  }
}
/*###### 日本支部会長 小野泰規　高速上段突きの指導  ######*/
#about-sodj .kousoku-jodan-thuki-section iframe {
  width: 972px;
  height: 537px;
}
@media screen and (max-width: 1000px) {
  #about-sodj .kousoku-jodan-thuki-section iframe {
    width: 87.5vw;
    height: 48.3vw;
  }
}
/*-------------------------------------------
greeting.php
-------------------------------------------*/
/*###### 小野先輩の画像紹介  ######*/
#greeting .mv-section .section-inner {
  margin-top: 30px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 700px) {
  #greeting .mv-section .section-inner {
    margin-bottom: 30px;
    gap: 20px;
  }
}
#greeting .mv-section .section-inner > img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  #greeting .mv-section .section-inner > img {
    width: 100vw;
    padding-left: -16px;
    padding-right: -16px;
  }
}
#greeting .mv-section .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 14px;
  gap: 10px;
}
@media screen and (max-width: 700px) {
  #greeting .mv-section .info {
    gap: 5px;
  }
}
#greeting .mv-section .info > p {
  font-size: 24px;
  letter-spacing: 0.32em;
}
#greeting .mv-section .info > small {
  font-size: 14px;
}
/*###### 挨拶文  ######*/
/* ※本文は固定ページの編集 */
#greeting .main-content .section-inner {
  margin-top: 0;
  align-items: flex-start;
  gap: 0;
}
#greeting .main-content h2 {
  font-size: 22px;
  padding-top: 30px;
  padding-bottom: 50px;
}
@media screen and (max-width: 700px) {
  #greeting .main-content h2 {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
#greeting .main-content p {
  font-size: 16px;
  width: 100%;
  line-height: 180%;
  padding-bottom: 40px;
}
@media screen and (max-width: 700px) {
  #greeting .main-content p {
    font-size: 14px;
    padding-bottom: 20px;
  }
}
/*-------------------------------------------
about-dojo.php
-------------------------------------------*/
@media screen and (max-width: 800px) {
  #about-dojo .composition {
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  #about-dojo .composition {
    font-size: 14px;
  }
}
#about-dojo .section-inner {
  gap: 95px;
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  #about-dojo .section-inner {
    gap: 15px;
  }
}
#about-dojo .dojo-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 800px) {
  #about-dojo .dojo-info-box {
    margin-top: 20px;
    padding-top: 30px;
    padding-left: 26px;
    padding-right: 26px;
    padding-bottom: 30px;
    width: 100%;
    box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.25);
    gap: 20px;
  }
}
#about-dojo .dojo-info-box > h2 {
  font-size: 24px;
}
@media screen and (max-width: 800px) {
  #about-dojo .dojo-info-box > h2 {
    font-size: 20px;
  }
}
#about-dojo .dojo-info-box > .composition-container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (max-width: 800px) {
  #about-dojo .dojo-info-box > .composition-container {
    gap: 16px;
  }
}
#about-dojo .dojo-info-box p {
  color: #6e6a6a;
}
@media screen and (max-width: 800px) {
  #about-dojo .dojo-info-box > iframe {
    width: 100%;
    height: 30vw;
    border-radius: 8px;
  }
}
/*###### 会費について  ######*/
#about-dojo .fee-section {
  background-color: #000;
  color: #fff;
}
#about-dojo .fee-section .section-inner {
  margin-top: 90px;
}
@media screen and (max-width: 700px) {
  #about-dojo .fee-section .section-inner {
    margin-top: 60px;
    gap: 50px;
  }
}
#about-dojo .fee-section .fee-container > p {
  color: #fff;
  font-weight: 300;
}
/*-------------------------------------------
schedule.php
-------------------------------------------*/
#schedule .calender-section {
  width: 100%;
}
#schedule .calender-section .section-inner {
  margin-top: 30px;
}
#schedule .calender-section .section-inner > iframe {
  width: 100%;
}
/*-------------------------------------------
scene.php
-------------------------------------------*/
/*###### 稽古の流れ（一例） ######*/
#scene .time-schedule-section {
  width: 100%;
}
#scene .time-schedule-section .section-inner {
  margin-top: 30px;
  /* width: 100%; */
}
#scene .time-schedule-section ul {
  display: flex;
  flex-direction: column;
  gap: 29px;
  position: relative;
  width: 100%;
}
#scene .time-schedule-section ul::before {
  content: "";
  border-left: 3px solid #717171;
  position: absolute;
  left: 35px;
  top: 350px;
  bottom: 350px;
  background-color: green;
  display: block;
  z-index: -1;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section ul::before {
    top: 0;
    left: 50%;
    /* transform: translate(-50%,-50%); */
  }
}
#scene .time-schedule-section ul > li {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 300;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section ul > li {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
#scene .time-schedule-section ul > li > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  background-color: #717171;
  height: 51px;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  color: #fff;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section ul > li > span {
    margin-bottom: -16px;
  }
}
#scene .time-schedule-section .box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #f6f6f6;
  padding: 40px 30px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section .box {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#scene .time-schedule-section .box > .box-inner {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
#scene .time-schedule-section .box > .box-inner > h3 {
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  letter-spacing: 0.32em;
}
@media screen and (max-width: 700px) {
  #scene .time-schedule-section .box > .box-inner > h3 {
    font-size: 18px;
  }
}
#scene .time-schedule-section .box > .box-inner > .media {
  display: flex;
  gap: 29px;
  align-items: center;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section .box > .box-inner > .media {
    flex-direction: column;
    gap: 17px;
  }
}
#scene .time-schedule-section .box > .box-inner > .media > img {
  min-width: 312px;
  height: 219px;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section .box > .box-inner > .media > img {
    min-width: 50px;
    width: 100%;
    height: auto;
  }
}
#scene .time-schedule-section .box > .box-inner > .media > .composition {
  line-height: 300%;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section .box > .box-inner > .media > .composition {
    line-height: 180%;
  }
}
#scene .time-schedule-section .interaction {
  padding-left: 90px;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section .interaction {
    padding-left: 0;
  }
}
#scene .time-schedule-section .interaction > .box > .box-inner > .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 35px;
}
@media screen and (max-width: 985px) {
  #scene .time-schedule-section .interaction > .box > .box-inner > .gallery {
    row-gap: 9px;
  }
}
#scene
  .time-schedule-section
  .interaction
  > .box
  > .box-inner
  > .gallery
  > img {
  width: 255px;
  height: 179px;
}
@media screen and (max-width: 985px) {
  #scene
    .time-schedule-section
    .interaction
    > .box
    > .box-inner
    > .gallery
    > img {
    width: 40vw;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  #scene
    .time-schedule-section
    .interaction
    > .box
    > .box-inner
    > .gallery
    > img {
    width: 42vw;
    height: auto;
  }
}
@media screen and (max-width: 430px) {
  #scene
    .time-schedule-section
    .interaction
    > .box
    > .box-inner
    > .gallery
    > img {
    width: 40vw;
  }
}
/*###### ギャラリー ######*/
#scene .gallery-section {
  background-color: #000;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 985px) {
  #scene .gallery-section .section-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
#scene .gallery-section .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 16px;
  width: 100%;
}
@media screen and (max-width: 985px) {
  #scene .gallery-section .gallery {
    gap: 1.6vw;
  }
}
#scene .gallery-section .gallery > img {
  min-width: 316px;
  max-width: 316px;
  height: 225px;
}
@media screen and (max-width: 985px) {
  #scene .gallery-section .gallery > img {
    min-width: 32vw;
    max-width: 32vw;
    height: auto;
  }
}
/*-------------------------------------------
for-fellow.php
-------------------------------------------*/
#for-fellow .composition {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  line-height: 180%;
  font-size: 24px;
}
@media screen and (max-width: 700px) {
  #for-fellow .composition {
    font-size: 16px;
  }
}
#for-fellow h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  letter-spacing: 0;
}
@media screen and (max-width: 700px) {
  #for-fellow h2 {
    font-size: 20px;
  }
}
/* @media screen and (max-width: 500px) {
  #for-fellow h2 {
    font-size: 16px;
  }
} */
#for-fellow h3 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}
#for-fellow p {
  font-family: "Noto Serif JP", serif;
}
/*###### タイトル ######*/
#for-fellow h1 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
}
#for-fellow .message-for-comrades > .section-inner {
  margin-top: 30px;
}
/*###### スライダー ######*/
#for-fellow .slider-section {
  width: 100%;
}
#for-fellow .slider-section > .slider {
  display: flex;
}
#for-fellow .slider-section > .slider > div {
  padding-left: 10px;
  padding-right: 10px;
}
#for-fellow .slider-section > .slider img {
  width: 316px;
  height: 225px;
}
@media screen and (max-width: 1300px) {
  #for-fellow .slider-section > .slider img {
    width: 23vw;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  #for-fellow .slider-section > .slider img {
    width: 42vw;
    height: auto;
  }
}
/*###### Exchange Event Information ######*/
#for-fellow .news-section a {
  font-family: "Noto Serif JP", serif;
}
/*###### ギャラリー ######*/
#for-fellow .gallery-section {
  background-color: #f6f6f6;
  width: 100%;
}
#for-fellow .gallery-section > .section-inner {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
  row-gap: 16px;
}
@media screen and (max-width: 1020px) {
  #for-fellow .gallery-section > .section-inner {
    row-gap: 1.57vw;
  }
}
@media screen and (max-width: 800px) {
  #for-fellow .gallery-section > .section-inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}

#for-fellow .gallery-section > .section-inner > img {
  width: 316px;
  height: 225px;
}
@media screen and (max-width: 1020px) {
  #for-fellow .gallery-section > .section-inner > img {
    width: 32vw;
    height: auto;
  }
}
/*###### Let's practice together, by all means. ######*/
#for-fellow .form-section .composition {
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  #for-fellow .form-section .composition {
    font-size: 14px;
  }
}
/*-------------------------------------------
contact.php
-------------------------------------------*/
/*###### フォーム ######*/
#contact .form-section {
  background-color: #fff;
  color: #000;
}
#contact .form-section .section-inner {
  margin-top: 30px;
}
/*-------------------------------------------
singular.php
-------------------------------------------*/
#singular {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
#singular .section-inner {
  margin-top: 0;
  display: block;
  margin-bottom: 60px;
}
#singular .section-inner a {
  color: blue;
}
@media screen and (max-width: 800px) {
  #singular .content-section {
    padding-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  #singular .section-inner {
    margin-top: 0;
    display: block;
    margin-bottom: 0;
  }
}
/*###### アイキャッチ・タイトル ######*/
#singular .singular-title-section > .section-inner > h1 {
  margin-top: 40px;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 800px) {
  #singular .singular-title-section > .section-inner > h1 {
    margin-top: 20px;
    font-size: 18px;
  }
}
#singular .singular-title-section > .section-inner > .date {
  margin-top: 16px;
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 800px) {
  #singular .singular-title-section > .section-inner > .date {
    font-size: 12px;
  }
}
#singular .thumb {
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  #singular .thumb {
    max-width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
  }
}
/*###### コンテンツ ######*/
#singular .content-section .section-inner {
  margin-bottom: 150px;
}
@media screen and (max-width: 800px) {
  #singular .content-section .section-inner {
    margin-bottom: 60px;
  }
}
#singular .content-section h2 {
  margin-top: 50px;
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 800;
  border-left: solid 9px #d9d9d9;
  padding-top: 8px;
  padding-bottom: 10px;
  padding-left: 20px;
  text-align: left;
}
@media screen and (max-width: 800px) {
  #singular .content-section h2 {
    margin-top: 20px;
    font-size: 16px;
    padding-top: 2px;
    padding-bottom: 3px;
    padding-left: 10px;
  }
}
#singular .content-section h3 {
  margin-top: 25px;
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 800;
  padding-top: 8px;
  padding-bottom: 10px;
  /* margin-left: 30px; */
  border-bottom: solid 2px #d9d9d9;
}
@media screen and (max-width: 800px) {
  #singular .content-section h3 {
    font-size: 14px;
  }
}
#singular .content-section h4 {
  margin-top: 25px;
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 800;
  /* padding-left: 30px; */
}
@media screen and (max-width: 800px) {
  #singular .content-section h4 {
    font-size: 14px;
    margin-bottom: 0px;
  }
}
#singular .content-section p {
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 180%;
  font-weight: 300;
}
@media screen and (max-width: 800px) {
  #singular .content-section p {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
/* #singular .content-section h4 + p {
  margin-left: 30px;
} */
/*-------------------------------------------
news.php
-------------------------------------------*/
#news .news-section .section-inner {
  margin-top: 30px;
}
#news .news-section .button-container {
  width: 100%;
}
#news .news-section .button-container > .button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  /* padding: 20px 22px; */
  width: 60px;
  height: 60px;
}
#news .news-section .button-container > .button.--pre {
  margin-right: auto;
  float: left;
}
#news .news-section .button-container > .button.--next {
  margin-left: auto;
}
#news .news-section .button-container > .button > p {
  color: #fff;
}
/*-------------------------------------------
member-ship-login
※プラグイン
-------------------------------------------*/
.swpm-login-widget-form {
  max-width: 100%;
}
.swpm-login-form-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}
.swpm-login-form-inner > div {
  max-width: 300px;
}
.swpm-login-form-inner label {
  max-width: 100%;
}
.swpm-login-form-inner input {
  border: #000 1px solid;
  padding: 5px;
  max-width: 100%;
}
.swpm-remember-me {
  display: none;
}
.swpm-login-submit input {
  text-align: center;
  color: white;
  background-color: #000;
  max-width: 100%;
}
.swpm-forgot-pass-link {
  display: none;
}
.swpm-join-us-link {
  display: none;
}
