/* 240801 */

@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

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

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;              /* 1 */
  height: auto;                 /* 1 */
  vertical-align: middle;       /* 2 */
  font-style: italic;           /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover;       /* 4 */
  shape-margin: 0.75rem;        /* 5 */
}

strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}

/* 文字色
======================================================================= */

body {
  color: #0f2133;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

/* 間隔 */

.l-margin {
  margin: 80px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 20px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 20px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

@media(max-width: 599px) {
  .l-width {
    padding: 0 20px;
  }
  .l-margin {
    margin: 20px auto;
  }
  .l-padding {
    padding: 20px;
  }
  .l-columns-2,
  .l-columns-3 {
    margin: 2em 0;
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }

  /* 画像の大きさ */

  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* =======================================================================

  ヘッダー

======================================================================= */

.header {
  line-height: 1;
  background: #fff url("img/header-bg.jpg") no-repeat center top;
  background-size: cover;
}

.header {
  padding: 180px 0;
}

.header__h1 {
  margin-bottom: 180px;
}

@media(max-width: 599px) {
  .header {
  }
}

/* =======================================================================

  メイン

======================================================================= */

.main {
  padding-top: 80px;
  padding-bottom: 80px;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* =======================================================================
  タイポグラフィー
======================================================================= */

/* 小見出し H3
======================================================================= */

.h3 {
  margin: 2em auto 1em;
  padding: 0;
  font-size: 36px;
  line-height: 1.333;
  color: #b8860b;

  font-family: "Noto Serif JP", system-ui;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;

  letter-spacing: .1em;
}
  .h3:first-child {
    margin-top: 0;
  }
.h3  span {
  display: block;
  font-size: .5em;
  font-weight: 500;
}

@media(max-width: 599px) {
  .h3 {
    margin: 20px 0;
    padding: 18px 20px;
    font-size: 21px;
  }
}

/* 小見出し H4
======================================================================= */

.h4 {
  margin: 40px auto 1em;
  padding: 1em 0 0;
  border-top: 1px solid #ccc;
  font-size: 21px;
  font-weight: normal;
  line-height: 1.333;
  color: #333;
}

@media(max-width: 599px) {
  .h4 {
  margin: 2em auto 1em;
    font-size: 18px;
  }
}


/* UL
======================================================================= */

.ul {
  margin: 2em 0;
  padding: 0;
  list-style-type: none;
}

.ul li::before {
  display: inline-block;
  margin-right: 3px;
  width: 1em;
  color: #b8860b;
  content: "\f111";
  font-family: FontAwesome;
}

@media(max-width: 599px) {
  .ul {
    font-size: 1em;
  }
}

/* ol
======================================================================= */

ol.numberlist {
  margin: 0;
  padding: 0;
  list-style-type: none;
  counter-reset: number;
}

ol.numberlist li {
  position: relative;
  padding-left: 2em;
  line-height: 1.5;

  padding-top: .75em;
  padding-bottom: .75em;
}

ol.numberlist li::before {
  position: absolute;
  top: 50%;
  left: 0;
  display:inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #b8860b;
  color: #fff;
  content: counter(number);
  counter-increment: number;
  text-align: center;
  font-weight: bold;
  font-size: .75em;
  line-height: 25px;
  transform: translateY(-50%);
}

@media(max-width: 599px) {
  ol.numberlist {
    margin: 20px 0;
    padding: 15px;
    border: none;
  }
  .main 
  ol.numberlist > li {
    font-size: 1.1em;
    padding: 6px 0;
    padding-left: 2em;
  }
  ol.numberlist > li::before {
    margin-right: 6px;
  }
}

/* --------------------------------------------------
	Works
-------------------------------------------------- */

.works__list {
	list-style: none;
	margin: 0 auto;
	padding: 0;

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}

.works__list li img {
	display: block;
	width: 100%;
}

.works__type {
  display: inline-block;
  margin-bottom: 1em;
  padding: .5em .75em;

  background-color: #808080;
  border-radius: 3px;

  font-size: .9em;
  color: #fff;
  line-height: 1;
}

.modaal-gallery-item.is_active {
  padding: 2em;
}

/* =======================================================================
  フォーム
======================================================================= */

.form {
  position: relative;
  background: #f7f5f0;
}

.form__title {
  margin: -40px -40px 20px;
  padding: 20px 1em;
  background: #369;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.form__head {
  margin: 0 auto 20px;
  padding: 0;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

.form input[type="text"],
.form input[type="email"] {
  display: block;
  margin: 0 auto 1em;
  padding: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #666;
  font-family: FontAwesome;
}
.form textarea {
  display: block;
  margin: 0 auto 1em;
  padding: 1em;
  width: 100%;
  min-height: 8em;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #666;
  font-size: 1.2em;
  font-family: FontAwesome;
}

.form__btn {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
}

.form p.form__note {
  overflow-y: scroll;
  margin-bottom: 0;
  padding: .5em;
  height: 4.6em;
  background-color: #fff;
  color: #666;
  font-size: 13px;
  line-height: 1.333;
}

.form p.form__note:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .form {
    margin: 20px 0;
    padding: 20px;
  }
  .form__title {
    margin: -20px -20px 20px;
    padding: 20px;
    font-size: 16px;
  }
  .form__head {
    font-size: 16px;
  }
  .form input[type="text"],
  .form input[type="email"] {
    margin: 0 0 15px;
    font-size: 15px;
  }
  .form__btn {
    margin: 0 0 15px;
    max-width: 100%;
  }
  .form p.form__note {
    font-size: 10px;
  }

  body div.submit {
    padding: 0;
  }
  body .form_input_input {
    max-width: 100%;
  }
}

/* =======================================================================
  プロフィール
======================================================================= */

.profile {
  font-size: 1rem;
}

.profile__inner {
  background: #f7f5f0;
}

ul.profile__title {
  margin-bottom: 1em;
  padding: 0 0 0 1.25em;
}

.profile__name-j {
  margin-bottom: .5em;
  letter-spacing: .5em;
  font-size: 1.618em;
  line-height: 1;
  font-feature-settings: "palt";

  color: #333;
}

.profile__name-j-ruby {
  font-size: .7em;
  letter-spacing: .25em;
}

.profile__name-e {
  margin-bottom: 1.5em;
  color: #aaa;
  letter-spacing: .25em;
  font-weight: normal;
  font-size: 1em;
  line-height: 1;
  font-feature-settings: "palt";
  text-transform: uppercase;
}

.profile__photo {
  float: right;
  margin: 0 0 2em 2em;
  width: 150px;
}

.profile__photo img {
  border-radius: 50%;
}

.main 
.profile h4 {
  margin: 1.5em 0 1em;
  padding-top: 1em;
  border-top: 1px solid #ddd;
  font-size: 18px;
}

/* 本 */

.profile__books {
  padding: 0;
  list-style-type: none;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.profile__books img {
  width: 100%;
  aspect-ratio: 2 / 3;
}

@media(max-width: 599px) {
  .profile {
    margin: 20px auto;
    padding: 20px;
  }
  .profile__photo {
    display: block;
    float: none;
    margin: 1em auto;
    width: 40%;
  }
  .profile__name-j {
    text-align: center;
    font-size: 18px;
  }
  .profile__name-j-ruby {
    display: block;
    margin-top: 10px;
  }
  .profile__name-e {
    text-align: center;
    font-size: 15px;
  }
  .main 
  .profile p,
  .main 
  .profile li {
    font-size: .9em;
  }
  .main 
  .profile h4 {
    font-size: 18px;
  }
  .profile__books {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #f7f5f0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__navi {
  text-align: right;
}

.footer__navi p {
  margin-bottom: 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
}

.footer__nav ul li {
  font-size: .9em;
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #ccc;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__copy {
  font-size: 1em;
  text-align: right;
}

@media(max-width: 599px) {
  .footer {
    padding: 20px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin-bottom: 20px;
  }
  .footer__logo img {
    max-width: 50%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: bold;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 形状 */

.is-shadow {
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
}
.is-shadow:hover {
  filter: none;
}

.is-round {
  border-radius: 9px;
}


/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
20px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */