@charset "UTF-8";
/* ==========================================
   Template: EASY meishi（https://do.gt-gt.org/）
   Copyright: 2020 do.
   利用規約を遵守の上お使いください。二次配布・販売を禁じます。
   ========================================== */
/* ==========================================
  リセットCSS
  基本的には触らないでください
  ========================================== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&family=Quicksand&family=Zen+Kaku+Gothic+New:wght@300;400;500&display=swap');
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #d9d9d9;
  margin: 2em auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}

/* ==========================================
  以下、デザインを決める記述です。
  ※印で検索することで設定箇所へジャンプします。
   ========================================== */
body {
  background: #444;
  /* ↑背景色 ※ */
  font-family: 'Quicksand','Font Awesome 6 Free','Quicksand','Zen Kaku Gothic New','Hiragino Kaku Gothic ProN', Meiryo,  sans-serif;
  /* 全体のフォント ※ */
  padding: 0;
  margin: 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}

section {
  overflow: hidden;
  width: calc(90vw - 40px);
  max-width: 1100px;
  margin: 40px auto;
  background: #eee;
  box-shadow: 0 5px 20px -12px #69827d73;
  display: -webkit-box;
  display: flex;
}

@media screen and (max-width: 767px) {
  section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    font-size: 15px;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .accordion-content {
    display: none;
  }
}

header {
  width: 120px;
  /* 以下backgroundから始まる数行がタイトル背景のグラデーションです ※ */
  background: #f94550;
  background: linear-gradient(121deg, #273C4E 0%, #EABF67 100%);
  position: relative;
}

header h1 {
  color: #eee;
  font-family: "Spartan", "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  top: -10px;
  right: -17px;
  font-size: 45px;
  font-weight: 100;
  word-break: keep-all;
  width: 90vh;
  text-align: right;
}

@media screen and (max-width: 991px) {
  header {
    width: 80px;
  }
}

@media screen and (max-width: 767px) {
  header {
    width: 100%;
    height: 70px;
  }
  header h1 {
    -webkit-transform: none;
            transform: none;
    width: 100%;
    top: 21px;
    right: 13px;
    bottom: -10px;
    font-size: 40px;
  }
}

.row {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

.col {
  -webkit-box-flex: 1;
          flex: 1;
  padding: 40px 20px;
}

.col > *:first-of-type {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: #EABF67;
  /* ↑リンクの色　一括置換すると見出し色なども一緒に変わります ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #273C4E;
  /* ↑リンクをホバーしたときの色 ※ */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a.btn {
  display: inline-block;
  background: #4D5D67;
  color: white;
  padding: 2px 8px;
  margin: 5px 7px 5px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.btn:hover {
  background: #EABF67;
}

b {
  font-weight: 500;
}

dl,
ol,
p,
ul {
  margin: 10px auto 20px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  dl,
  ol,
  p,
  ul {
    margin: 15px auto;
  }
}

h2 {
  color: #EABF67;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 22px;
  margin: 30px 0 12px;
}

h3 {
  color: #EABF67;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  margin: 30px 0 10px;
  font-size: 20px;
  font-weight: 400;
}

.center {
  text-align: center;
}

dl.memo dt {
  width: 100%;
  color: #50c5e1;
  padding: 1px 5px;
}

dl.memo dd {
  border-left: 1px dotted #d0d0d0;
  margin: 0 0 0 1em;
  padding: 0 0 1em 1em;
}

.box {
  background: #ecfaf9;
  /* ↑色付きボックスの背景色 ※ */
  padding: 5px 15px 2px;
  border-radius: 5px;
}

form.mailform {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

form.mailform input {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

form.mailform input[type=mail], form.mailform input[type=text] {
  width: 100%;
  font-family: YuGothic,'Yu Gothic','TsukuBRdGothic-Regular','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Cambria Math','Avenir',sans-serif;
  border: none;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #f7f7f7;
  margin: 5px 0;
  padding: 5px;
  font-size: 14px;
}

form.mailform input[type=mail]:focus, form.mailform input[type=text]:focus {
  outline: none;
  background: white;
}

form.mailform input[type=submit] {
  border: none;
  padding: 7px 15px;
  font-size: 14px;
  background: #50c5e1;
  color: #ffffff;
  border-radius: 5px;
  margin: 10px 0;
  background: #50c5e1;
}

form.mailform input[type=submit]:hover {
  outline: none;
  background: #faf494;
  cursor: pointer;
}

form.mailform textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #f7f7f7;
  border-radius: 3px;
  font-family: YuGothic,'Yu Gothic','TsukuBRdGothic-Regular','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Cambria Math','Avenir',sans-serif;
  margin: 5px 0;
  padding: 5px;
  font-size: 14px;
}

form.mailform textarea:focus {
  outline: none;
  background: white;
}

footer p {
  text-align: center;
}

footer p a {
  text-align: center;
  width: 100%;
  font-size: 12px;
  padding: 5px 10px;
  margin: 0 auto;
  display: block;
}

.only-phone {
  display: none;
}

@media screen and (max-width: 767px) {
  .only-phone {
    display: block;
  }
}

.accordion {
  margin: 1px;
}

.accordion-header {
  cursor: pointer;
}

.accordion-content {
  display: none;
}
