@charset "utf-8";
@import 'https://fonts.googleapis.com/css?family=Noto+Serif';

/* ーーーーーー　初期設定　ーーーーーー */
html {
    font-size: 16px;
}
.outfit-900 {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.outfit-400 {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.outfit-200 {
  font-family: "Outfit", sans-serif;
  font-weight: 100;
  font-style: normal;
}
a:link,a:visited,a:hover,a:active {
    color: #000;
    text-decoration: none;
}
body {
    padding-top: 3.5rem;
    color: #000;
    font-size: 16px;
    background-color: #f5f5f5;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}
main,footer {
    max-width: calc(850px + 4em);
    margin: 0 auto;
    padding-right: 140px;
}
footer {
    margin-bottom: 1.5rem;
}
ul {
  list-style: none;
  padding-left: 0;
}
h1,h2,h3,ul,a,img,p {
    margin: 0;
    padding: 0;
}
/* ーーーーーー　ヘッダー　ーーーーーー */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}
.header-inner {
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    width: 140px;
    margin-top: 3.5rem;
    text-align: left;

    /* background-color: tomato; */
}
nav {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
}
nav li:not(:last-child) {
    margin-bottom: 1rem;
}

/* ーーーーーー　メイン｜インデックス　ーーーーーー */

.page-title
  {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
}
.intro,.page-title,.section-title,section {
    text-align: center;
}
.intro,
.section-title
{
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 3em;
}
.page-title {
    margin-bottom: 10em;

}
section {
    margin-bottom: 7.5em;
}

h1 {
    font-size: clamp(3rem, 2.455rem + 2.73vw, 4.5rem);
}
h1 span {
    display: inline-block;
}
h2 {
    font-size: 2em;
}
h3 {
    font-size: 1.5rem;
}
.sns img{
    height: 25px;
    margin-bottom: 1rem;
}
.top {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-bottom: 5rem;
  overflow: hidden;
}
.top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* contact.html */
.contact-hero {
    background-image: url(../images/contact-hero.jpg);
}

form {
    max-width: 800px;
    margin: 0 auto;
}

.form-dlist {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4em;
}

.form-dlist__term,
.form-dlist__desc {
    margin-bottom: 2em;
}

.form-dlist__term {
    width: 18em;
    margin-bottom: 0;
}

.form-dlist__desc {
    box-sizing: border-box;
    width: calc(100% - 18em);
    padding-left: 1.5em;
    margin-left: 0;
}

.form-dlist__desc:last-child {
    height: 10em;
    margin-bottom: 0;
}

select,
input[type="text"],
textarea {
    width: 100%;
}

input[type="text"],
textarea {
    padding: 0.5em;
    box-sizing: border-box;
}

select {
    padding: 0.25em;
}

textarea {
    height: 100%;
}

.submit-btn {
    text-align: center;
}

input[type="submit"] {
    padding: 0.75em 2.5em;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: bold;
    background-color: #b875c9;
}

input[type="submit"]:hover {
    background-color: #000;
    transition: background-color 0.1s linear;
    cursor: pointer;
}

select:focus,
input:focus {
    outline-color: #b875c9;
    background-color: #e1e1e1;
}

.form-dlist__term,
.form-dlist__desc {
    line-height: 1;
}

input[type="radio"] {
    margin-bottom: 0.75em;
}

input[value="first-neither"] {
    margin-bottom: 0;
}